chore: initialize recovered claude workspace
This commit is contained in:
17
src/components/agents/SnapshotUpdateDialog.tsx
Executable file
17
src/components/agents/SnapshotUpdateDialog.tsx
Executable file
@@ -0,0 +1,17 @@
|
||||
import { useEffect } from 'react'
|
||||
|
||||
type Props = {
|
||||
agentType: string
|
||||
scope: unknown
|
||||
snapshotTimestamp: string
|
||||
onComplete: (choice: 'merge' | 'keep' | 'replace') => void
|
||||
onCancel: () => void
|
||||
}
|
||||
|
||||
export function SnapshotUpdateDialog({ onCancel }: Props) {
|
||||
useEffect(() => {
|
||||
onCancel()
|
||||
}, [onCancel])
|
||||
|
||||
return null
|
||||
}
|
||||
Reference in New Issue
Block a user