From ca50834d8c78a196e5c9bff124100715adf40a61 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 8 Jan 2026 02:47:11 +0100 Subject: [PATCH] Update QuizRunner.tsx to use NavLink instead of Link --- client/src/components/QuizRunner.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/QuizRunner.tsx b/client/src/components/QuizRunner.tsx index a15b19a..f2b860d 100644 --- a/client/src/components/QuizRunner.tsx +++ b/client/src/components/QuizRunner.tsx @@ -1,5 +1,5 @@ import { useEffect, useLayoutEffect, useMemo, useState } from 'react'; -import { Link } from 'react-router-dom'; +import { Link, NavLink } from 'react-router-dom'; import { fetchEntries, fetchEntry } from '../api'; import type { EntryDetail, EntryItems, EntrySummary, QuizQuestionWithEntry } from '../types'; import VideoPlayer from './VideoPlayer';