From 320822f4904071192b0612eac76e878dbf25bf54 Mon Sep 17 00:00:00 2001 From: yougotwill Date: Tue, 13 Aug 2024 17:20:23 +1000 Subject: [PATCH] fix: dont show environment in about in prod --- ts/components/AboutView.tsx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/ts/components/AboutView.tsx b/ts/components/AboutView.tsx index 751e460a1..321ddecb8 100644 --- a/ts/components/AboutView.tsx +++ b/ts/components/AboutView.tsx @@ -40,13 +40,14 @@ const StyledContent = styled(Flex)` export const AboutView = () => { // Add debugging metadata - environment if not production, app instance name - const states = []; + const environmentStates = []; if (window.getEnvironment() !== 'production') { - states.push(window.getEnvironment()); + environmentStates.push(window.getEnvironment()); } + if (window.getAppInstance()) { - states.push(window.getAppInstance()); + environmentStates.push(window.getAppInstance()); } const versionInfo = `v${window.getVersion()}`; @@ -63,7 +64,7 @@ export const AboutView = () => { }, []); return ( - + { width={192} height={26} /> - { buttonType={SessionButtonType.Simple} /> - + {environmentStates.length ? ( + + ) : null} https://getsession.org