From 3e547ce4cc4df905ad033ea58febf7fca1f9ac26 Mon Sep 17 00:00:00 2001 From: EYHN Date: Mon, 25 Mar 2024 13:52:08 +0000 Subject: [PATCH] fix(core): hidden modals when workspace fallback (#6301) --- packages/frontend/core/src/pages/workspace/index.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/frontend/core/src/pages/workspace/index.tsx b/packages/frontend/core/src/pages/workspace/index.tsx index a80f4e9d9e..81b479a396 100644 --- a/packages/frontend/core/src/pages/workspace/index.tsx +++ b/packages/frontend/core/src/pages/workspace/index.tsx @@ -18,10 +18,7 @@ import { WorkspaceLayout } from '../../layouts/workspace-layout'; import { RightSidebarContainer } from '../../modules/right-sidebar'; import { WorkbenchRoot } from '../../modules/workbench'; import { CurrentWorkspaceService } from '../../modules/workspace/current-workspace'; -import { - AllWorkspaceModals, - CurrentWorkspaceModals, -} from '../../providers/modal-provider'; +import { AllWorkspaceModals } from '../../providers/modal-provider'; import { performanceRenderLogger } from '../../shared'; import { PageNotFound } from '../404'; @@ -92,7 +89,6 @@ export const Component = (): ReactElement => { - ); }