diff options
| author | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-09-22 11:31:14 +0700 |
|---|---|---|
| committer | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-09-22 11:31:14 +0700 |
| commit | 8e4e981060b612f5d21f141d62656df80e2a0a4b (patch) | |
| tree | 0c34ec2ad16579ee3930fbc657c4384021d0bd57 | |
| parent | f2fc34da455d755b8d5b3252299e2fae04e37c21 (diff) | |
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 |
