diff options
| author | trisusilo <tri.susilo@altama.co.id> | 2023-09-22 04:28:04 +0000 |
|---|---|---|
| committer | trisusilo <tri.susilo@altama.co.id> | 2023-09-22 04:28:04 +0000 |
| commit | d477e0dbc1ce0af15da5cb03d92db49515cc24d0 (patch) | |
| tree | 0c34ec2ad16579ee3930fbc657c4384021d0bd57 | |
| parent | c9c75d1c5ed36ce99ebb69f4c096188f258c59d7 (diff) | |
| parent | 8e4e981060b612f5d21f141d62656df80e2a0a4b (diff) | |
Merged in Feature/popup_cart (pull request #75)
bugs fix rp double
| -rw-r--r-- | src/lib/cart/components/Cartheader.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cart/components/Cartheader.jsx b/src/lib/cart/components/Cartheader.jsx index ab5dfdaa..863b8a46 100644 --- a/src/lib/cart/components/Cartheader.jsx +++ b/src/lib/cart/components/Cartheader.jsx @@ -255,7 +255,7 @@ const Cardheader = (cartCount) => { <> <div className='mt-3'> <span className='text-gray-400 text-caption-2'>Subtotal Sebelum PPN : </span> - <span className='font-semibold text-red-600'>Rp. {currencyFormat(subTotal)}</span> + <span className='font-semibold text-red-600'>{currencyFormat(subTotal)}</span> </div> <div className='mt-5 mb-2'> <button |
