From 63453a3b5eb94f11c7320a68ead09745b1081fb7 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 7 Jan 2026 23:29:42 +0100 Subject: [PATCH] Import and use ExpandableText in EntryPage --- client/src/pages/EntryPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/pages/EntryPage.tsx b/client/src/pages/EntryPage.tsx index 10318f3..05b5ab4 100644 --- a/client/src/pages/EntryPage.tsx +++ b/client/src/pages/EntryPage.tsx @@ -3,6 +3,7 @@ import { Link, useNavigate, useParams } from 'react-router-dom'; import { fetchEntry } from '../api'; import VideoPlayer from '../components/VideoPlayer'; import { ConversationPanel, GrammarPanel, KeyPhrasePanel, VocabPanel } from '../components/ItemPanels'; +import ExpandableText from '../components/ExpandableText'; import type { EntryDetail } from '../types'; export default function EntryPage() {