diff --git a/studio-v2/app/vocabulary/page.tsx b/studio-v2/app/vocabulary/page.tsx index eec7366..c89f5cf 100644 --- a/studio-v2/app/vocabulary/page.tsx +++ b/studio-v2/app/vocabulary/page.tsx @@ -234,53 +234,12 @@ export default function VocabularyPage() {
{topics.map(topic => (
-
+
💡 {topic.topic} ({topic.word_count}) -
- - -
-
+
{(topic.display_words || topic.words).slice(0, 15).map((w: string, i: number) => ( {w} ))} @@ -288,6 +247,47 @@ export default function VocabularyPage() { +{topic.words.length - 15} )}
+
+ + +
))}