Skip to content

Commit dcab190

Browse files
Not needed now we have file versions.
I think it's pretty weird to switch away from the Files view after loading a hex so we're better off without it.
1 parent d30c9cb commit dcab190

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ import {
1313
SettingsContext,
1414
} from "./settings/settings";
1515
import { useLocalStorage } from "./common/use-local-storage";
16-
import Project from "./project/Project";
1716
import ProjectDropTarget from "./project/ProjectDropTarget";
1817
import { LoggingContext } from "./logging/logging-hooks";
1918
import { DefaultLogging } from "./logging/default";
2019
import { fetchMicroPython } from "./fs/micropython";
2120
import { DialogProvider } from "./common/use-dialogs";
21+
import Workbench from "./workbench/Workbench";
2222

2323
const logging = new DefaultLogging();
2424
const device = new MicrobitWebUSBConnection({ logging });
@@ -48,7 +48,7 @@ const App = () => {
4848
<DeviceContext.Provider value={device}>
4949
<FileSystemContext.Provider value={fs}>
5050
<ProjectDropTarget>
51-
<Project />
51+
<Workbench />
5252
</ProjectDropTarget>
5353
</FileSystemContext.Provider>
5454
</DeviceContext.Provider>

src/project/Project.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)