From 04011f9ea764cf2458637e41012c131d8b7a9aca Mon Sep 17 00:00:00 2001 From: Thomas Huang Date: Tue, 29 Aug 2017 17:54:01 -0700 Subject: [PATCH] Multiple tokens shows the amount when greater than 1 --- ui/app/components/token-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/components/token-list.js b/ui/app/components/token-list.js index 2346568bc..998ec901d 100644 --- a/ui/app/components/token-list.js +++ b/ui/app/components/token-list.js @@ -95,7 +95,7 @@ TokenList.prototype.renderTokenStatusBar = function () { let msg if (tokens.length === 1) { msg = `You own 1 token` - } else if (tokens.length === 1) { + } else if (tokens.length > 1) { msg = `You own ${tokens.length} tokens` } else { msg = `No tokens found`