From 345d0970e411f35bd15e2f795d71aa35a4c038f0 Mon Sep 17 00:00:00 2001 From: Alex Cheung Date: Mon, 14 Jul 2025 00:19:53 +0800 Subject: [PATCH] add sample date --- src/utils/Utils.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/Utils.js b/src/utils/Utils.js index c90574c..ca8f9d5 100644 --- a/src/utils/Utils.js +++ b/src/utils/Utils.js @@ -184,7 +184,8 @@ export const isPasswordExpiry = () =>{ } export const checkIsOnlyOnlinePaymentByIssueDate = (date) => { - const targetDate = new Date(2026, 0, 28, 8, 0, 0) + const targetDate = new Date(2026, 0, 28, 8, 0, 0) //2026-01-28T08:00:00.000Z + // const targetDate = new Date(2025, 6, 13, 8, 0, 0); //2025-07-13T08:00:00.000Z const checkDate = DateUtils.convertToDate(date) if (isDummyLoggedIn()){ return false;