From f36bb7a04eabe0330cb166bf9ce5021c92f38dc8 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 6 Apr 2020 21:15:41 +0530 Subject: linter --- src/webex/pages/popup.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/webex/pages/popup.tsx') diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx index f4a2bf568..6cd7242ff 100644 --- a/src/webex/pages/popup.tsx +++ b/src/webex/pages/popup.tsx @@ -427,8 +427,8 @@ function amountDiff( total: string | Amounts.AmountJson, partial: string | Amounts.AmountJson, ): Amounts.AmountJson | string { - let a = typeof total === "string" ? Amounts.parse(total) : total; - let b = typeof partial === "string" ? Amounts.parse(partial) : partial; + const a = typeof total === "string" ? Amounts.parse(total) : total; + const b = typeof partial === "string" ? Amounts.parse(partial) : partial; if (a && b) { return Amounts.sub(a, b).amount; } else { @@ -437,7 +437,7 @@ function amountDiff( } function parseSummary(summary: string) { - let parsed = summary.split(/: (.+)/); + const parsed = summary.split(/: (.+)/); return { merchant: parsed[0], item: parsed[1], -- cgit v1.2.3