MCPcopy Create free account
hub / github.com/winfunc/opcode / checkClaudeExecutable

Function checkClaudeExecutable

src/components/App.cleaned.tsx:67–77  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 }, []);

Callers 1

AppContentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected