File size: 270 Bytes
064bfd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { useEffect } from 'react'

type Props = {
  sessions: unknown[]
  onSelect: (sessionId: string) => void
  onCancel: () => void
}

export function AssistantSessionChooser({ onCancel }: Props) {
  useEffect(() => {
    onCancel()
  }, [onCancel])

  return null
}