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

const selectors = {
  isSendFormInError,
}

module.exports = selectors

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