From 44731342a8303e164c472dab13f5aa1436ef84ae Mon Sep 17 00:00:00 2001 From: Vikas Agarwal Date: Thu, 16 Aug 2018 15:44:27 +0530 Subject: [PATCH] Fixed issue with determination of maintenance mode flag --- src/components/Layout/Layout.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Layout/Layout.jsx b/src/components/Layout/Layout.jsx index d3240157f..cdddad13d 100644 --- a/src/components/Layout/Layout.jsx +++ b/src/components/Layout/Layout.jsx @@ -16,7 +16,7 @@ const Layout = (props) => { if (isLoadingUser) { return (
) - } else if (MAINTENANCE_MODE || maintenanceMode) { + } else if (MAINTENANCE_MODE === true || maintenanceMode) { return } else { return (