From e1564c10cf3927c7cab8efc5b70e6f50c0c8dde7 Mon Sep 17 00:00:00 2001 From: Rob Gordon Date: Tue, 18 Feb 2025 19:15:14 -0500 Subject: [PATCH] Remove banner --- app/src/components/Layout.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/app/src/components/Layout.tsx b/app/src/components/Layout.tsx index 41e26767..0a9ebd8a 100644 --- a/app/src/components/Layout.tsx +++ b/app/src/components/Layout.tsx @@ -78,12 +78,5 @@ function getShowBannerAndMessage(): [boolean, string, "error" | "info"] { } } - // return [false, "", "info"]; - - // Temporary banner while our auth provider is down - return [ - true, - "Login is temporarily unavailable. We apologize for the inconvenience. Please check back soon.", - "error", - ]; + return [false, "", "info"]; }