Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pooriaset committed May 7, 2024
2 parents c5778b9 + de071f8 commit 033a9bf
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/BestSellingProducts/components/Slider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,7 @@ const Slider: FC<SliderProps> = ({ items }) => {
spaceBetween: 16,
},
}}
spaceBetween={16}
style={{
paddingBottom: 2,
}}
spaceBetween={theme.spacing(2)}
>
{items?.map((product) => {
if (product.__typename === 'VariableProduct') {
Expand All @@ -49,6 +46,7 @@ const Slider: FC<SliderProps> = ({ items }) => {
key={product.databaseId}
style={{
height: 'auto',
boxSizing: 'border-box',
}}
>
<VariableProductItem data={product} />
Expand Down

0 comments on commit 033a9bf

Please sign in to comment.