diff --git a/studio-v2/app/parent/quiz/[unitId]/page.tsx b/studio-v2/app/parent/quiz/[unitId]/page.tsx index e15fdad..3de8ca3 100644 --- a/studio-v2/app/parent/quiz/[unitId]/page.tsx +++ b/studio-v2/app/parent/quiz/[unitId]/page.tsx @@ -5,7 +5,6 @@ import { useParams, useRouter } from 'next/navigation' import { useTheme } from '@/lib/ThemeContext' import { useLanguage } from '@/lib/LanguageContext' import { AudioButton } from '@/components/learn/AudioButton' -import { LearnLayout } from '@/components/learn/LearnLayout' interface QAItem { id: string; question: string; answer: string @@ -66,14 +65,15 @@ export default function ParentQuizPage() { const nativeTranslation = currentItem?.translations?.[language]?.text || '' if (isLoading) { - return -
-
+ return ( +
+
+
+ ) } return ( -
+
{/* Header */}