chore: initialize recovered claude workspace
This commit is contained in:
15
src/assistant/AssistantSessionChooser.tsx
Executable file
15
src/assistant/AssistantSessionChooser.tsx
Executable file
@@ -0,0 +1,15 @@
|
||||
import { useEffect } from 'react'
|
||||
|
||||
type Props = {
|
||||
sessions: unknown[]
|
||||
onSelect: (sessionId: string) => void
|
||||
onCancel: () => void
|
||||
}
|
||||
|
||||
export function AssistantSessionChooser({ onCancel }: Props) {
|
||||
useEffect(() => {
|
||||
onCancel()
|
||||
}, [onCancel])
|
||||
|
||||
return null
|
||||
}
|
||||
Reference in New Issue
Block a user