Browse Source

Added ILS: '₪' (Israeli New Shekel) to the currency list

maziggy 2 months ago
parent
commit
a6aec2aed8
1 changed files with 1 additions and 0 deletions
  1. 1 0
      frontend/src/utils/currency.ts

+ 1 - 0
frontend/src/utils/currency.ts

@@ -26,6 +26,7 @@ const CURRENCY_SYMBOLS: Record<string, string> = {
   TRY: '₺',
   RUB: '₽',
   HUF: 'Ft',
+  ILS: '₪',
 };
 
 export function getCurrencySymbol(currencyCode: string): string {