From e3c434c9cd5a008de6eb99c50f97e04adf441de8 Mon Sep 17 00:00:00 2001 From: Jason Chuang Date: Fri, 28 Nov 2025 10:48:35 +0800 Subject: [PATCH] disabled banner --- src/pages/authentication/AuthWrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/authentication/AuthWrapper.js b/src/pages/authentication/AuthWrapper.js index 9f0c57c..1ea9f7c 100644 --- a/src/pages/authentication/AuthWrapper.js +++ b/src/pages/authentication/AuthWrapper.js @@ -23,7 +23,7 @@ const AuthWrapper = ({ children }) => { // --- Date control --- const today = new Date(); - const showUntil = new Date("2025-12-08T00:00:00"); // 8 Dec 2025 and onwards = hide popup + const showUntil = new Date("2025-11-27T00:00:00"); // 8 Dec 2025 and onwards = hide popup const [openPopup, setOpenPopup] = useState(today < showUntil); const handleClosePopup = () => {