From 9a4f6d10f446634208644901662fc08dec5e2e48 Mon Sep 17 00:00:00 2001 From: John McCardle Date: Fri, 7 Jan 2022 16:19:21 -0500 Subject: [PATCH] style: trailing comma for extreme excellence --- store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/index.js b/store/index.js index 6e07882..1585072 100644 --- a/store/index.js +++ b/store/index.js @@ -109,5 +109,5 @@ export const mutations = { spendCurrency: (state, value) => { value = Decimal.mul(value, -1) state.currency = Decimal.add(state.currency, value) - } + }, }