Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Re: Storefront Api Cart Currency format

Storefront Api Cart Currency format

Soumya
Shopify Partner
6 0 0

I'm Using Storefront API to fetch Cart currency details to my headless storefront, and my store currency format is set to INR. But the currency format is coming as a single zero after decimal like "21.0" where I want the currency format to be llike "21.00" two digits after decimal.

Any suggestions how to do that.

 

Replies 2 (2)

andrewjam
Visitor
2 0 0

Im running into the same issue. Have you found a solution?

andrewjam
Visitor
2 0 0

I just ended up using javascripts Intl 

```

Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD'
}).format(Number(10.0))


```