fix: Resolve Server Component serialization error on shared links
All checks were successful
Automated Container Build / build-and-push (push) Successful in 51s

This commit is contained in:
Elijah 2026-06-27 20:39:54 -07:00
parent cab4757be2
commit a65e371449
3 changed files with 10 additions and 13 deletions

View file

@ -35,7 +35,7 @@ interface QuizViewerProps {
};
retakeIds: string[] | null;
isShared?: boolean;
onFinished: () => void;
onFinished?: () => void;
}
export function QuizViewer({ quiz, retakeIds, isShared = false, onFinished }: QuizViewerProps) {