Skip to content

Commit

Permalink
Set the default to true.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlho committed Apr 16, 2024
1 parent 69e5c5a commit cc1dec6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function BookingProvider({ children }) {
const [bookingCalendarInfo, setBookingCalendarInfo] =
useState<DateSelectArg>();
const [department, setDepartment] = useState<Department>();
const [isSafetyTrained, setIsSafetyTrained] = useState(false);
const [isSafetyTrained, setIsSafetyTrained] = useState(true);
const [role, setRole] = useState<Role>();
const [selectedRooms, setSelectedRooms] = useState<RoomSetting[]>([]);

Expand Down

0 comments on commit cc1dec6

Please sign in to comment.