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

const selectors = {
  isSendFormInError,
}

module.exports = selectors

function isSendFormInError (state) {
  return Object.values(getSendErrors(state)).some(n => n)
}