@hanzo/commerce 7.1.6 → 7.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -104,7 +104,7 @@ const CartPanel: React.FC<PropsWithChildren & {
104
104
  </Suspense>
105
105
  )}
106
106
  {(showShipping || showPromoCode) && (
107
- <div className='flex flex-col gap-1 py-2 border-t text-sm'>
107
+ <div className='flex flex-col gap-0.5 py-1.5 border-t text-sm'>
108
108
  <p className='flex justify-between'>
109
109
  <span className='text-muted-1'>Subtotal</span>
110
110
  <span className='font-semibold'>{cmmc.cartTotal === 0 ? '0' : formatCurrencyValue(cmmc.cartTotal)}</span>
@@ -68,7 +68,7 @@ const PromoCode = observer(() => {
68
68
  }
69
69
 
70
70
  return (
71
- <div className='flex flex-col gap-2 border-t py-2'>
71
+ <div className='flex flex-col gap-2 border-t py-1'>
72
72
  <Form {...form}>
73
73
  <form onSubmit={form.handleSubmit(applyPromoCode)}>
74
74
  <div className='flex gap-2 items-center'>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hanzo/commerce",
3
- "version": "7.1.6",
3
+ "version": "7.1.7",
4
4
  "description": "e-commerce framework.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",