From 562fb8f27aaadcd0861e56d4bd3e4af4515bbf4f Mon Sep 17 00:00:00 2001 From: kushagrasarathe <76868364+kushagrasarathe@users.noreply.github.com> Date: Tue, 7 Oct 2025 19:01:37 +0530 Subject: [PATCH] chore: remove mentainance banner --- src/config/underMaintenance.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/underMaintenance.config.ts b/src/config/underMaintenance.config.ts index c2a92d62e..c7b105a35 100644 --- a/src/config/underMaintenance.config.ts +++ b/src/config/underMaintenance.config.ts @@ -25,7 +25,7 @@ interface MaintenanceConfig { const underMaintenanceConfig: MaintenanceConfig = { enableFullMaintenance: false, // set to true to redirect all pages to /maintenance - enableMaintenanceBanner: true, // set to true to show maintenance banner on all pages + enableMaintenanceBanner: false, // set to true to show maintenance banner on all pages } export default underMaintenanceConfig