MCPcopy Create free account
hub / github.com/Work-Fisher/code-claw / handleRefreshDiagnostics

Function handleRefreshDiagnostics

ai-code-studio/src/App.tsx:329–339  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

327 }
328
329 async function handleRefreshDiagnostics() {
330 setIsLoadingDiagnostics(true);
331 try {
332 const report = await api<DiagnosticsReport>('/api/diagnostics');
333 setDiagnosticsReport(report);
334 } catch (error) {
335 setErrorMessage(error instanceof Error ? error.message : String(error));
336 } finally {
337 setIsLoadingDiagnostics(false);
338 }
339 }
340
341 async function handleRenameSession(sessionId: string, newName: string) {
342 const trimmed = newName.trim();

Callers 1

AppFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected