const setFilter = useCallback(
    (filter: string) => {
      dispatch({ type: 'filter.changed', payload: { filter } })
    },
    [dispatch]