Skip to content

Commit

Permalink
Feat: change BookingForm props from strings to dates
Browse files Browse the repository at this point in the history
  • Loading branch information
MagnusHafstad committed Apr 8, 2024
1 parent 5f3e403 commit dc89698
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import * as yup from "@/lib/validation";
export type BookingForm = {
fall: {
active: boolean;
start: string;
end: string;
start: Date;
end: Date;
};
spring: {
active: boolean;
start: string;
end: string;
start: Date;
end: Date;
};
};

Expand Down

0 comments on commit dc89698

Please sign in to comment.