const CategorySelect = ({ eventId, value, ...props }: CategorySelectProps) => {
  const { data: categories = [] } = useCategoriesQuery(eventId)

  const options = categories.map(category => ({
    value: category.id,