Skip to content

Commit

Permalink
Remove ? for non optional prop
Browse files Browse the repository at this point in the history
Signed-off-by: Gilles Dubreuil <[email protected]>
  • Loading branch information
gildub committed Jul 27, 2023
1 parent 38eb1e0 commit 09bb083
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface FormValues {
}

export interface JobFunctionFormProps {
jobFunction?: JobFunction | null;
jobFunction: JobFunction | null;
onClose: () => void;
}

Expand Down

0 comments on commit 09bb083

Please sign in to comment.