Fix missing prop

This commit is contained in:
2024-10-02 22:13:26 +02:00
parent c94d4f67ea
commit 313ca5a14c
2 changed files with 1 additions and 2 deletions

View File

@@ -83,6 +83,7 @@ function App() {
settings={settings} settings={settings}
pullLatestChanges={pullLatestChanges} pullLatestChanges={pullLatestChanges}
onLinkClick={handleLinkClick} onLinkClick={handleLinkClick}
lookupFileByName={lookupFileByName}
/> />
</Page.Content> </Page.Content>
</Page> </Page>

View File

@@ -8,7 +8,6 @@ import {
useToasts, useToasts,
Modal, Modal,
Input, Input,
Button,
} from '@geist-ui/core'; } from '@geist-ui/core';
import { Code, Eye } from '@geist-ui/icons'; import { Code, Eye } from '@geist-ui/icons';
import FileTree from './FileTree'; import FileTree from './FileTree';
@@ -22,7 +21,6 @@ const MainContent = ({
files, files,
selectedFile, selectedFile,
hasUnsavedChanges, hasUnsavedChanges,
error,
onFileSelect, onFileSelect,
onContentChange, onContentChange,
onSave, onSave,