mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
b3d78ed8a1
Revert accidentally changed constants. Require defaults in ens-input, gas-fee-display and confirm screens.
15 lines
244 B
JavaScript
15 lines
244 B
JavaScript
const selectors = {
|
|
getToDropdownOpen,
|
|
sendToIsInError,
|
|
}
|
|
|
|
module.exports = selectors
|
|
|
|
function getToDropdownOpen (state) {
|
|
return state.send.toDropdownOpen
|
|
}
|
|
|
|
function sendToIsInError (state) {
|
|
return Boolean(state.send.errors.to)
|
|
}
|