()
| 815 | }; |
| 816 | |
| 817 | const handleOpenProject = async () => { |
| 818 | try { |
| 819 | const projectPath = await TauriAPI.openProjectDialog(); |
| 820 | if (!projectPath) return; |
| 821 | |
| 822 | await handleOpenRecentProject(projectPath); |
| 823 | } catch (error) { |
| 824 | console.error('Failed to open project dialog:', error); |
| 825 | } |
| 826 | }; |
| 827 | |
| 828 | const handleCreateProject = () => { |
| 829 | setShowProjectWizard(true); |
nothing calls this directly
no test coverage detected