// Extract timezone from format "(GMT+00:00) Europe/London"
const timezone = shop.timezone.split(') ')[1];
// Create a date object for today at 1 AM
const localDate = setMinutes(setHours(startOfToday(), 1), 0);
// Convert the local time to UTC based on the shop's timezone
const utcDate = toZonedTime(localDate, timezone);
// Extract timezone from format "(GMT+00:00) Europe/London"
const timezone = shop.timezone.split(') ')[1];
// Create a date object for today at 1 AM
const localDate = setMinutes(setHours(startOfToday(), 1), 0);
// Convert the local time to UTC based on the shop's timezone
const utcDate = toZonedTime(localDate, timezone);