Skip to content

Commit 118d508

Browse files
committed
remove console.logs
1 parent 12c123c commit 118d508

2 files changed

Lines changed: 0 additions & 2 deletions

File tree

apps/web/pages/booking/[uid].tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,6 @@ export function RecurringBookings({
790790
t,
791791
i18n: { language },
792792
} = useLocale();
793-
console.log(timeZone());
794793
const recurringBookingsSorted = recurringBookings
795794
? recurringBookings.sort((a: ConfigType, b: ConfigType) => (dayjs(a).isAfter(dayjs(b)) ? 1 : -1))
796795
: null;

packages/lib/date-fns/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ export const formatToLocalizedTimezone = (
8181
// Intl.DateTimeFormat doesn't format into a timezone only, so we must
8282
// formatToParts() and return the piece we want
8383
const theDate = date instanceof dayjs ? (date as Dayjs).toDate() : (date as Date);
84-
console.log(Intl.DateTimeFormat(locale, { timeZoneName, timeZone }).formatToParts(theDate));
8584
return Intl.DateTimeFormat(locale, { timeZoneName, timeZone })
8685
.formatToParts(theDate)
8786
.find((d) => d.type == "timeZoneName")?.value;

0 commit comments

Comments
 (0)