| 93 | |
| 94 | // ─── Monaco Editor Modal ─────────────────────────────────────────────────────── |
| 95 | interface EditorModalProps { |
| 96 | workspace: string; |
| 97 | filePath: string; |
| 98 | fileName: string; |
| 99 | onClose: () => void; |
| 100 | } |
| 101 | |
| 102 | function EditorModal({ workspace, filePath, fileName, onClose }: EditorModalProps) { |
| 103 | const [content, setContent] = useState<string>(""); |
nothing calls this directly
no outgoing calls
no test coverage detected