Skip to content

Commit

Permalink
fix: oncancel modal action week layout (calcom#13625)
Browse files Browse the repository at this point in the history
alannnc authored Feb 9, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 16c1cf7 commit b183a57
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -16,6 +16,9 @@ const BookEventFormWrapper = ({ children }: { onCancel: () => void; children: Re
const { data } = useEvent();
const parsedSelectedTimeslot = dayjs(selectedTimeslot);
const { timeFormat, timezone } = useTimePreferences();
if (!selectedTimeslot) {
return null;
}
return (
<>
<h1 className="font-cal text-emphasis text-xl leading-5">{t("confirm_your_details")} </h1>

0 comments on commit b183a57

Please sign in to comment.