From 297106995428774bebb2c697bf35db4fc9248f1f Mon Sep 17 00:00:00 2001 From: Alexander Polynomdivision Date: Tue, 2 Oct 2018 15:35:48 +0200 Subject: [PATCH] feat: Remove the PPP --- frontend/src/models/vocab.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/models/vocab.ts b/frontend/src/models/vocab.ts index 510e8a0..eaeebb3 100644 --- a/frontend/src/models/vocab.ts +++ b/frontend/src/models/vocab.ts @@ -21,7 +21,6 @@ export interface IVerbData { // 1. Person praesens: string; perfekt: string; - ppp: string; }; export interface IAdjektivData { @@ -55,7 +54,6 @@ export enum ReviewQType { VERB_PRAESENS, VERB_PERFEKT, - VERB_PPP }; export interface IReviewCard { @@ -85,9 +83,6 @@ export function reviewQTypeToStr(type: ReviewQType): string { return "1. Person Präsens"; case ReviewQType.VERB_PERFEKT: return "1. Person Perfekt"; - case ReviewQType.VERB_PPP: - // TODO - return "PPP"; } }