Skip to content

Commit

Permalink
fix: remove testing change
Browse files Browse the repository at this point in the history
  • Loading branch information
jfdoming committed Oct 29, 2023
1 parent 7634bea commit b58b659
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const DistributeAssessmentPage = (): React.ReactElement => {
const { id: teacherId, school: schoolId } =
(authenticatedUser as AuthenticatedTeacher) ?? {};

const [page, setPage] = useState(state?.endDate !== undefined ? 3 : 2);
const [page, setPage] = useState(state?.endDate !== undefined ? 3 : 0);

const [testId, setTestId] = useState(state?.testId ?? "");
const [testName, setTestName] = useState(state?.testName ?? "");
Expand Down

0 comments on commit b58b659

Please sign in to comment.