Skip to content

Commit

Permalink
style: remove flex
Browse files Browse the repository at this point in the history
  • Loading branch information
geolffreym committed Feb 2, 2025
1 parent 7b81b54 commit d94988f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/carousel/variants/carousel-top-titles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function CarouselTopTitles({ posts, category }: Props) {
>
<Carousel ref={carousel.carouselRef} {...carousel.carouselSettings}>
{posts.map((post: any) => (
<Box key={`${category}-${post.id}`} sx={{ px: 0.75, display: 'flex !important' }}>
<Box key={`${category}-${post.id}`} sx={{ px: 0.75, /*display: 'flex !important'*/ }}>
<PosterTopTitles post={post} />
</Box>
))}
Expand Down

0 comments on commit d94988f

Please sign in to comment.