Skip to content

Commit

Permalink
Merge pull request #154 from dnoakes/fix/zar-currency-symbol
Browse files Browse the repository at this point in the history
Fixes display of south african (ZAR) currency from R$ to R
  • Loading branch information
bbedward committed Nov 17, 2021
2 parents 26965ad + adaf687 commit 46689ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/model/available_currency.dart
Expand Up @@ -212,7 +212,7 @@ class AvailableCurrency extends SettingSelectionItem {
case "VES":
return "VES";
case "ZAR":
return "R\$";
return "R";
case "UAH":
return "₴";
case "USD":
Expand Down

0 comments on commit 46689ae

Please sign in to comment.