mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-11 08:12:38 +02:00
fix: resolve TS errors for unused fileContent state and missing JSX namespace
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
b7b84e94e0
commit
8737605666
2 changed files with 2 additions and 2 deletions
|
|
@ -688,7 +688,7 @@ function App() {
|
||||||
|
|
||||||
// File browser state (for Knowledge section)
|
// File browser state (for Knowledge section)
|
||||||
const [selectedPath, setSelectedPath] = useState<string | null>(null)
|
const [selectedPath, setSelectedPath] = useState<string | null>(null)
|
||||||
const [fileContent, setFileContent] = useState<string>('')
|
const [, setFileContent] = useState<string>('')
|
||||||
const [editorContent, setEditorContent] = useState<string>('')
|
const [editorContent, setEditorContent] = useState<string>('')
|
||||||
const editorContentRef = useRef<string>('')
|
const editorContentRef = useRef<string>('')
|
||||||
const [editorContentByPath, setEditorContentByPath] = useState<Record<string, string>>({})
|
const [editorContentByPath, setEditorContentByPath] = useState<Record<string, string>>({})
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { useEffect, useState } from 'react'
|
import { useEffect, useState, type JSX } from 'react'
|
||||||
import { HtmlFileViewer } from './html-file-viewer'
|
import { HtmlFileViewer } from './html-file-viewer'
|
||||||
import { PdfFileViewer } from './pdf-file-viewer'
|
import { PdfFileViewer } from './pdf-file-viewer'
|
||||||
import { getViewerType, isCacheableViewerPath } from '@/lib/file-types'
|
import { getViewerType, isCacheableViewerPath } from '@/lib/file-types'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue