diff --git a/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx b/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx index 9d0a9e2fba..1bab48486e 100644 --- a/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx +++ b/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx @@ -139,7 +139,9 @@ export function Workspace () { } const updateWsName = () => { - setDisplayOzCustoms(true) + // @ts-ignore + if (workspaceCreateTemplateInput.current.value.startsWith('oz')) setDisplayOzCustoms(true) + else setDisplayOzCustoms(false) console.log('inside updateWsName', displayOzCustoms) // @ts-ignore workspaceCreateInput.current.value = `${workspaceCreateTemplateInput.current.value || 'remixDefault'}_${Date.now()}` @@ -179,7 +181,7 @@ export function Workspace () { { displayOzCustoms &&

-
+