mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
10 lines
158 B
JavaScript
10 lines
158 B
JavaScript
const selectors = {
|
|
sendAmountIsInError,
|
|
}
|
|
|
|
module.exports = selectors
|
|
|
|
function sendAmountIsInError (state) {
|
|
return Boolean(state.send.errors.amount)
|
|
}
|