diff --git a/client/src/components/EntryCard.tsx b/client/src/components/EntryCard.tsx index 721ad26..cf2c18a 100644 --- a/client/src/components/EntryCard.tsx +++ b/client/src/components/EntryCard.tsx @@ -6,24 +6,12 @@ interface Props { } export default function EntryCard({ entry }: Props) { - const { counts } = entry; const learnLink = `/entry/${encodeURIComponent(entry.id)}`; const quizLink = `/quiz?mode=entry&id=${encodeURIComponent(entry.id)}`; return (
{entry.title}
-
- {entry.mode || 'mixed'} - {entry.type && {entry.type}} -
-
- Grammar {counts.grammar} - Vocab {counts.vocab} - Phrases {counts.key_phrases} - Conversation {counts.conversation} - Quiz {counts.quiz} -
Learn