()
| 65 | // Check if Claude executable exists on mount |
| 66 | useEffect(() => { |
| 67 | const checkClaudeExecutable = async () => { |
| 68 | try { |
| 69 | // Check if claude executable exists - method not available in API |
| 70 | const exists = true; // Default to true for now |
| 71 | if (!exists) { |
| 72 | setShowClaudeBinaryDialog(true); |
| 73 | } |
| 74 | } catch (error) { |
| 75 | console.error("Error checking Claude executable:", error); |
| 76 | } |
| 77 | }; |
| 78 | |
| 79 | checkClaudeExecutable(); |
| 80 | }, []); |