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