From d0d9095c92c627417bd39c27c77d977320598d5c Mon Sep 17 00:00:00 2001 From: Mike Sawka Date: Sun, 27 Oct 2024 14:23:52 -0700 Subject: [PATCH] call isDev() function to properly hide workspace switcher in prod (#1154) --- frontend/app/tab/tabbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/tab/tabbar.tsx b/frontend/app/tab/tabbar.tsx index 9947c43cb..09690908d 100644 --- a/frontend/app/tab/tabbar.tsx +++ b/frontend/app/tab/tabbar.tsx @@ -542,7 +542,7 @@ const TabBar = React.memo(({ workspace }: TabBarProps) => { {appMenuButton} {devLabel} - {isDev ? : null} + {isDev() ? : null}
{tabIds.map((tabId, index) => {