feat: add missing currencies in plan edit page (#3727)

This commit is contained in:
Maxime LUCE 2025-04-15 10:01:14 +02:00 committed by GitHub
parent e3d5619b25
commit 2f4180b1b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -232,6 +232,15 @@ class PlanEditPage extends React.Component {
[
{id: "USD", name: "USD"},
{id: "CNY", name: "CNY"},
{id: "EUR", name: "EUR"},
{id: "JPY", name: "JPY"},
{id: "GBP", name: "GBP"},
{id: "AUD", name: "AUD"},
{id: "CAD", name: "CAD"},
{id: "CHF", name: "CHF"},
{id: "HKD", name: "HKD"},
{id: "SGD", name: "SGD"},
{id: "BRL", name: "BRL"},
].map((item, index) => <Option key={index} value={item.id}>{item.name}</Option>)
}
</Select>