fix(core): hidden modals when workspace fallback (#6301)

This commit is contained in:
EYHN
2024-03-25 13:52:08 +00:00
parent da12a0e48e
commit 3e547ce4cc

View File

@@ -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 => {
<ServiceProviderContext.Provider value={workspace.services}>
<WorkspaceFallback key="workspaceLoading" />
<AllWorkspaceModals />
<CurrentWorkspaceModals />
</ServiceProviderContext.Provider>
);
}