Skip to content

Commit

Permalink
handle UI_EXTERNAL_LOGIN_URI set to / - don't hide left-side nav on l…
Browse files Browse the repository at this point in the history
…anding page

No-Issue
  • Loading branch information
himdel committed May 12, 2024
1 parent 8baa45a commit 256ad22
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/loaders/standalone/loader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ const App = (_props) => {
// Hide navs on login page
if (
location.pathname !== formatPath(Paths.login) &&
location.pathname !== UI_EXTERNAL_LOGIN_URI
(location.pathname !== UI_EXTERNAL_LOGIN_URI ||
UI_EXTERNAL_LOGIN_URI === '/')
) {
component = (
<StandaloneLayout
Expand Down

0 comments on commit 256ad22

Please sign in to comment.