chore: lintfix

This commit is contained in:
John McCardle 2022-01-11 20:19:17 -05:00 committed by pskfyi
commit 8dfbd31ebb

View file

@ -20,14 +20,14 @@
<script>
export default {
computed: {
currencyText() {
if (this.$store.state.currency.greaterThan(1e7)) {
return this.$store.state.currency.toString()
}
return Math.floor(this.$store.state.currency)
}
}
computed: {
currencyText() {
if (this.$store.state.currency.greaterThan(1e7)) {
return this.$store.state.currency.toString()
}
return Math.floor(this.$store.state.currency)
},
},
}
</script>