Skip to content

Commit 6b0a833

Browse files
author
vikasrohit
authored
Merge pull request #2387 from appirio-tech/hotfix/maintenance_mode_evaluation
Hotfix/maintenance mode evaluation
2 parents ca4054d + 5ba08ad commit 6b0a833

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Layout/Layout.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Layout = (props) => {
1717

1818
if (isLoadingUser) {
1919
return (<div />)
20-
} else if (MAINTENANCE_MODE === true || maintenanceMode) {
20+
} else if (MAINTENANCE_MODE === 'true' || maintenanceMode) {
2121
return <Maintenance />
2222
} else {
2323
return (

0 commit comments

Comments
 (0)