Skip to content

Commit e09c46e

Browse files
committed
Publish 2025-12-30
1 parent 35a1a92 commit e09c46e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

elements/locales.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,5 +650,5 @@ export const offer = (() => {
650650
const y = date.getFullYear();
651651
const m = date.getMonth() + 1;
652652
const d = date.getDate();
653-
return y === 2025 && m === 12 && (d >= 25 && d < 27) ? {end: 'December 26'} : null;
653+
return (y === 2025 && m === 12 && d === 31) || (y === 2026 && m === 1 && d === 1) ? {end: 'January 1'} : null;
654654
})();

0 commit comments

Comments
 (0)