mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
import { getSendErrors } from '../send.selectors'
|
|
|
|
export function isSendFormInError (state) {
|
|
return Object.values(getSendErrors(state)).some(n => n)
|
|
}
|