mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
b3d78ed8a1
Revert accidentally changed constants. Require defaults in ens-input, gas-fee-display and confirm screens.
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
const { getSendErrors } = require('../send.selectors')
|
|
|
|
const selectors = {
|
|
isSendFormInError,
|
|
}
|
|
|
|
module.exports = selectors
|
|
|
|
function isSendFormInError (state) {
|
|
return Object.values(getSendErrors(state)).some(n => n)
|
|
}
|