mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
const { getSendErrors } = require('../send.selectors')
|
|
|
|
const selectors = {
|
|
isSendFormInError,
|
|
}
|
|
|
|
module.exports = selectors
|
|
|
|
function isSendFormInError (state) {
|
|
const { amount, to } = getSendErrors(state)
|
|
return Boolean(amount || to !== null)
|
|
}
|