diff --git a/apps/web/components/booking/pages/AvailabilityPage.tsx b/apps/web/components/booking/pages/AvailabilityPage.tsx index 50c3dcf096..fbbab0aa89 100644 --- a/apps/web/components/booking/pages/AvailabilityPage.tsx +++ b/apps/web/components/booking/pages/AvailabilityPage.tsx @@ -88,8 +88,12 @@ export const locationKeyToString = (location: LocationObject, t: TFunction) => { } }; -const GoBackToPreviousPage = ({ slug, t }: { slug: string; t: TFunction }) => { +const GoBackToPreviousPage = ({ t }: { t: TFunction }) => { const router = useRouter(); + const path = router.asPath.split("/"); + path.pop(); // Remove the last item (where we currently are) + path.shift(); // Removes first item e.g. if we were visitng "/teams/test/30mins" the array will new look like ["teams","test"] + const slug = path.join("/"); return (
- + {/* Temporarily disabled - booking?.startTime && rescheduleUid && (