File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments