From f1a1c2531cf3a27c0951e5a65caeb5fa9d9fcaae Mon Sep 17 00:00:00 2001 From: Alexander Polynomdivision Date: Sun, 21 Oct 2018 16:26:49 +0200 Subject: [PATCH] refactor: Remove word type based scoring --- frontend/src/models/vocab.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/frontend/src/models/vocab.ts b/frontend/src/models/vocab.ts index 28f64a9..3a3ffbe 100644 --- a/frontend/src/models/vocab.ts +++ b/frontend/src/models/vocab.ts @@ -160,10 +160,3 @@ export function vocabToReviewCard(vocab: IVocab): IReviewCard[] { }]; } } - -export function typeToPoints(type: VocabType) { - switch (type) { - // Nomen: 2P + 1 (Wenn richtig) - // - } -};