Multiple tokens shows the amount when greater than 1

This commit is contained in:
Thomas Huang 2017-08-29 17:54:01 -07:00
parent 71de68fc13
commit 04011f9ea7
1 changed files with 1 additions and 1 deletions

View File

@ -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`