From a56488aea9d9424411be8b79f1a6f6fc8e803abd Mon Sep 17 00:00:00 2001 From: Isaac Hellendag <2823852+hellendag@users.noreply.github.com> Date: Tue, 3 Sep 2024 11:43:58 -0500 Subject: [PATCH] [ui] Fix CodeLocationNotFound import path (#24181) ## Summary & Motivation This shouldn't be imported from `shared`, vscode just auto-added it that way. ## How I Tested These Changes Load Plus app, verify that the error is gone. ## Changelog [New | Bug | Docs] `NOCHANGELOG` --- .../dagster-ui/packages/ui-core/src/workspace/WorkspaceRoot.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js_modules/dagster-ui/packages/ui-core/src/workspace/WorkspaceRoot.tsx b/js_modules/dagster-ui/packages/ui-core/src/workspace/WorkspaceRoot.tsx index 44e55295ca072..b369e7b967a91 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/workspace/WorkspaceRoot.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/workspace/WorkspaceRoot.tsx @@ -1,8 +1,8 @@ import {Box, MainContent, NonIdealState, SpinnerWithText} from '@dagster-io/ui-components'; import {useContext} from 'react'; import {Redirect, Switch, useParams} from 'react-router-dom'; -import {CodeLocationNotFound} from 'shared/workspace/CodeLocationNotFound'; +import {CodeLocationNotFound} from './CodeLocationNotFound'; import {GraphRoot} from './GraphRoot'; import {WorkspaceAssetsRoot} from './WorkspaceAssetsRoot'; import {WorkspaceContext} from './WorkspaceContext';