diff --git a/openmetadata-ui/src/main/resources/ui/src/router/AppRouter.tsx b/openmetadata-ui/src/main/resources/ui/src/router/AppRouter.tsx index e301aa48b12..fb6083f2941 100644 --- a/openmetadata-ui/src/main/resources/ui/src/router/AppRouter.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/router/AppRouter.tsx @@ -137,42 +137,48 @@ const AppRouter = () => { } return ( - + <> {slackChat} - - {callbackComponent ? ( - - ) : null} + + + {callbackComponent ? ( + + ) : null} - - {!isAuthenticated && !isSigningIn ? ( + + {!isAuthenticated && !isSigningIn ? ( + <> + + + ) : ( + + )} + + + {isBasicAuthProvider && ( <> - + + + + - ) : ( - )} - - - {isBasicAuthProvider && ( - <> - - - - - - )} - {isAuthenticated && } - - + {isAuthenticated && } + + + ); };