Forgot to stage post merge change

This commit is contained in:
Carlos-Mesquita
2024-11-25 16:55:24 +00:00
parent a1501d6c23
commit bb5326a331

View File

@@ -31,6 +31,7 @@ interface Props {
} }
export default function ExamPage({ page, user, destination = "/", hideSidebar = false }: Props) { export default function ExamPage({ page, user, destination = "/", hideSidebar = false }: Props) {
const router = useRouter();
const [variant, setVariant] = useState<Variant>("full"); const [variant, setVariant] = useState<Variant>("full");
const [avoidRepeated, setAvoidRepeated] = useState(false); const [avoidRepeated, setAvoidRepeated] = useState(false);
const [hasBeenUploaded, setHasBeenUploaded] = useState(false); const [hasBeenUploaded, setHasBeenUploaded] = useState(false);
@@ -366,5 +367,3 @@ export default function ExamPage({ page, user, destination = "/", hideSidebar =
</> </>
); );
} }
export default ExamPage;