From 1f28dde6e7a62085705bbdf0e13429c03a9236aa Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Tue, 28 Nov 2023 14:27:17 +0530 Subject: [PATCH] chore: Tweak start and end dates --- src/lib/util/promos/promo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/util/promos/promo.ts b/src/lib/util/promos/promo.ts index 742bf99c..fb02cb77 100644 --- a/src/lib/util/promos/promo.ts +++ b/src/lib/util/promos/promo.ts @@ -12,8 +12,8 @@ interface Promotion { const promotions: Promotion[] = [ { id: 'holiday-2023', - startDate: new Date('2023-11-28'), - endDate: new Date('2023-12-31'), + startDate: new Date('2023-11-27'), + endDate: new Date('2024-01-01'), component: Holiday2023 } ];