aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-footer/send-footer.selectors.js
blob: ccd4706ea6e912bd11a67ab3770bf8ad55faf3d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { getSendErrors } from '../send.selectors'

const selectors = {
  isSendFormInError,
}

module.exports = selectors

function isSendFormInError (state) {
  const { amount, to } = getSendErrors(state)
  return Boolean(amount || to !== null)
}