From b727c324b8ccb349dc9794b36246efbeaf6e4333 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Thu, 21 Apr 2022 13:07:10 +0100 Subject: [PATCH] Hide navbar behind ready check to prevent flicker of navbar on login (#47968) --- public/app/AppWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/AppWrapper.tsx b/public/app/AppWrapper.tsx index 95c0477196a..73a370a25dc 100644 --- a/public/app/AppWrapper.tsx +++ b/public/app/AppWrapper.tsx @@ -95,7 +95,7 @@ export class AppWrapper extends React.Component
- {newNavigationEnabled ? : } + {ready && <>{newNavigationEnabled ? : }}
{pageBanners.map((Banner, index) => (