diff --git a/src/routes/(editor)/edit.tsx b/src/routes/(editor)/edit.tsx
index 78fac26..baab32c 100644
--- a/src/routes/(editor)/edit.tsx
+++ b/src/routes/(editor)/edit.tsx
@@ -66,11 +66,9 @@ export default function Edit(props: ParentProps) {
filesContext.open(directory);
}, { key: 'o', modifier: Modifier.Control });
- return
- }>{
- root =>
- }
- ;
+ return }>{
+ root =>
+ };
}
const Editor: Component<{ root: FileSystemDirectoryHandle }> = (props) => {
@@ -316,10 +314,6 @@ const Editor: Component<{ root: FileSystemDirectoryHandle }> = (props) => {
return
- {
- command =>
- }
-
@@ -366,11 +360,11 @@ const Editor: Component<{ root: FileSystemDirectoryHandle }> = (props) => {
file => {
const mutated = createMemo(() => mutatedFiles().values().find(({ id }) => id === file().id) !== undefined);
- return {
+ return {
const folder = file().directory;
filesContext?.set(folder.name, folder);
setActive(folder.name);
- }}>{file().name};
+ }}>{file().name};
},
] as const}