Add default currency string

This commit is contained in:
Vortrex
2022-09-04 15:47:31 -05:00
parent 1ebbcb2a86
commit 7908c756f7

View File

@@ -8,7 +8,7 @@
// TYPE: Client (JavaScript) // TYPE: Client (JavaScript)
// =========================================================================== // ===========================================================================
let currencyString = "{AMOUNT}"; let currencyString = "${AMOUNT}";
// =========================================================================== // ===========================================================================
@@ -19,9 +19,3 @@ function getCurrencyString(amount) {
} }
// =========================================================================== // ===========================================================================
function receiveCurrencyStringFromServer(newCurrencyString) {
currencyString = newCurrencyString;
}
// ===========================================================================