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

Function handleSelectSession

ai-code-studio/src/App.tsx:491–500  ·  view source on GitHub ↗
(sessionId: string | null)

Source from the content-addressed store, hash-verified

489 }
490
491 async function handleSelectSession(sessionId: string | null) {
492 try {
493 await api('/api/sessions/select', {
494 method: 'POST',
495 body: { sessionId },
496 });
497 } catch (error) {
498 setErrorMessage(error instanceof Error ? error.message : String(error));
499 }
500 }
501
502 async function handleShutdownGateway() {
503 try {

Callers 1

AppFunction · 0.85

Calls 1

apiFunction · 0.90

Tested by

no test coverage detected