diff --git a/src/shared/lib/formatPrice.ts b/src/shared/lib/formatPrice.ts index 2fbfd5d..f753c19 100644 --- a/src/shared/lib/formatPrice.ts +++ b/src/shared/lib/formatPrice.ts @@ -12,9 +12,9 @@ const formatPrice = async (amount: number | string, withLabel?: boolean) => { const label = withLabel ? locale == LanguageRoutes.RU ? ' сум' - : locale == LanguageRoutes.KI - ? ' сўм' - : ' so‘m' + : locale == LanguageRoutes.UZ + ? ' so‘m' + : ' funt' : ''; const parts = String(amount).split('.'); const dollars = parts[0];