diff --git a/src/components/CartActionsButtons/CartActionsButtons.module.css b/src/components/CartActionsButtons/CartActionsButtons.module.css
index a8ba14b..f42ba7e 100644
--- a/src/components/CartActionsButtons/CartActionsButtons.module.css
+++ b/src/components/CartActionsButtons/CartActionsButtons.module.css
@@ -40,6 +40,7 @@
box-shadow: none;
font-size: 16px;
font-weight: 600;
+ padding: 0;
}
.removeButton {
diff --git a/src/components/CartActionsButtons/CartActionsButtons.tsx b/src/components/CartActionsButtons/CartActionsButtons.tsx
index 44c6fd9..e86fbc1 100644
--- a/src/components/CartActionsButtons/CartActionsButtons.tsx
+++ b/src/components/CartActionsButtons/CartActionsButtons.tsx
@@ -109,7 +109,7 @@ export default function CartActionsButtons({ item }: { item: CartItem }) {
min={1}
max={100}
value={item.quantity || 1}
- onChange={(value) =>
+ onChange={(value: number) =>
dispatch(
updateQuantity({
id: item.id,
diff --git a/src/components/Icons/DeleteIcon.tsx b/src/components/Icons/DeleteIcon.tsx
index f7d02ab..9fcc4d6 100644
--- a/src/components/Icons/DeleteIcon.tsx
+++ b/src/components/Icons/DeleteIcon.tsx
@@ -6,20 +6,17 @@ interface DeleteIconType {
const DeleteIcon = ({ className, onClick }: DeleteIconType) => {
return (
);
diff --git a/src/pages/cart/components/CartMobileTabletLayout.tsx b/src/pages/cart/components/CartMobileTabletLayout.tsx
index c3c8f93..32237ed 100644
--- a/src/pages/cart/components/CartMobileTabletLayout.tsx
+++ b/src/pages/cart/components/CartMobileTabletLayout.tsx
@@ -124,7 +124,7 @@ export default function CartMobileTabletLayout({