mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
feat: storage and token limiting
This commit is contained in:
@@ -17,7 +17,12 @@ export const FormSelectCurrency = ({
|
||||
hideIfEmpty?: boolean
|
||||
} & SelectProps) => {
|
||||
const items = useMemo(
|
||||
() => currencies.map((currency) => ({ code: currency.code, name: `${currency.code} - ${currency.name}` })),
|
||||
() =>
|
||||
currencies.map((currency) => ({
|
||||
code: currency.code,
|
||||
name: `${currency.code}`,
|
||||
badge: currency.name,
|
||||
})),
|
||||
[currencies]
|
||||
)
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user