Skip to content

Commit d2db225

Browse files
committed
add >= back in function
1 parent f403bb6 commit d2db225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/(console)/bottomAlerts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,5 @@ export function isPromoLive(
8888
const targetString = `${date}T${time}:00`;
8989
const target = new Date(new Date(targetString).toLocaleString('en-US', { timeZone }));
9090

91-
return isSameDay(now, target) && now > target;
91+
return isSameDay(now, target) && now >= target;
9292
}

0 commit comments

Comments
 (0)