Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
monachilada committed Sep 5, 2024
1 parent 004b9e8 commit c1031e6
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ import Check from "@digitalservicebund/icons/Check";
import classNames from "classnames";
import { useId } from "react";
import { preCheck } from "resources/content";
import type { Answers, TQuestion } from "routes/vorpruefung.$questionId/route";
import type {
PreCheckAnswers,
TQuestion,
} from "routes/vorpruefung.$questionId/route";

type PreCheckNavigationProps = Readonly<{
question?: TQuestion;
answers: Answers;
answers: PreCheckAnswers;
}>;

export default function PreCheckNavigation({
Expand Down

0 comments on commit c1031e6

Please sign in to comment.