aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-to-row/send-to-row.selectors.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send/send-content/send-to-row/send-to-row.selectors.js')
-rw-r--r--ui/app/components/send/send-content/send-to-row/send-to-row.selectors.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/app/components/send/send-content/send-to-row/send-to-row.selectors.js b/ui/app/components/send/send-content/send-to-row/send-to-row.selectors.js
index 8919014be..982fd2e46 100644
--- a/ui/app/components/send/send-content/send-to-row/send-to-row.selectors.js
+++ b/ui/app/components/send/send-content/send-to-row/send-to-row.selectors.js
@@ -1,5 +1,6 @@
const selectors = {
getToDropdownOpen,
+ getTokens,
sendToIsInError,
}
@@ -12,3 +13,7 @@ function getToDropdownOpen (state) {
function sendToIsInError (state) {
return Boolean(state.send.errors.to)
}
+
+function getTokens (state) {
+ return state.metamask.tokens
+}