diff --git a/frontend/src/components/AvailabilitiesTable.jsx b/frontend/src/components/AvailabilitiesTable.jsx index 529b095..638f3f9 100644 --- a/frontend/src/components/AvailabilitiesTable.jsx +++ b/frontend/src/components/AvailabilitiesTable.jsx @@ -489,7 +489,7 @@ function AvailabilitiesTable({ authUser }) { -
Hours | @@ -529,23 +529,20 @@ function AvailabilitiesTable({ authUser }) { ); return ( -+ |
+ !matchingAvailability &&
+ handleAddAvailability(
+ timeSlotStart,
+ timeSlotStart.clone().add(45, "minutes")
+ )
+ }
+ >
{matchingAvailability ? (
renderInterview(matchingAvailability.interview)
) : (
- <>
-
- >
+ |
);
---|