1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/components/send_/send-footer/send-footer.selectors.js

13 lines
253 B
JavaScript
Raw Normal View History

const { getSendErrors } = require('../send.selectors')
2018-04-26 18:38:38 +02:00
const selectors = {
isSendFormInError,
}
module.exports = selectors
function isSendFormInError (state) {
const { amount, to } = getSendErrors(state)
return Boolean(amount || to !== null)
}