feat: add BRL currency

This commit is contained in:
Yang Luo
2025-04-11 22:24:34 +08:00
parent b7fafcc62b
commit 5c41c6c4a5
3 changed files with 5 additions and 0 deletions

View File

@@ -139,6 +139,8 @@ class ProductBuyPage extends React.Component {
return "HK$";
} else if (product?.currency === "SGD") {
return "S$";
} else if (product?.currency === "BRL") {
return "R$";
} else {
return "(Unknown currency)";
}