l-min-components 1.0.768 → 1.0.773
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -301,11 +301,17 @@ const SideMenu = ({
|
|
|
301
301
|
)}
|
|
302
302
|
minimal={isOpen}
|
|
303
303
|
>
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
304
|
+
{!(
|
|
305
|
+
window.location.hostname.includes("personal") &&
|
|
306
|
+
window.location.hostname.includes("staging")
|
|
307
|
+
) && (
|
|
308
|
+
<>
|
|
309
|
+
<IconContainer active={active}>
|
|
310
|
+
{active ? iconActive : icon}
|
|
311
|
+
</IconContainer>
|
|
312
|
+
<TextContainer minimal={isOpen}>{text}</TextContainer>
|
|
313
|
+
</>
|
|
314
|
+
)}
|
|
309
315
|
|
|
310
316
|
{notifications && (
|
|
311
317
|
<NotificationCount minimal={isOpen}>
|