Skip to content

Commit

Permalink
[ui] Fix CodeLocationNotFound import path (#24181)
Browse files Browse the repository at this point in the history
## 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`
  • Loading branch information
hellendag authored Sep 3, 2024
1 parent 3f6dbe7 commit a56488a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

1 comment on commit a56488a

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagit-core-storybook ready!

✅ Preview
https://dagit-core-storybook-7itydozhk-elementl.vercel.app

Built with commit a56488a.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.