From 994064f328aeb6f18ea9d213dca72138bf909159 Mon Sep 17 00:00:00 2001 From: Utkarsh Birla <96072228+UtkarshBirla28@users.noreply.github.com> Date: Thu, 4 Jul 2024 14:37:42 +0530 Subject: [PATCH] Currency from $ to INR Changed Currency from $ to INR for all the products. --- components/ui/currency.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ui/currency.tsx b/components/ui/currency.tsx index 12be42c..cb63e23 100644 --- a/components/ui/currency.tsx +++ b/components/ui/currency.tsx @@ -4,7 +4,7 @@ import { useEffect, useState } from "react"; const formatter = new Intl.NumberFormat('en-US', { style: 'currency', - currency: 'USD', + currency: 'INR', }); interface CurrencyProps {