Skip to content

Commit

Permalink
fix: widths on directory feed
Browse files Browse the repository at this point in the history
  • Loading branch information
nensidosari committed Sep 19, 2024
1 parent 0dc1c79 commit c5c7500
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,9 @@ export function SquadsDirectoryFeed({
{children}
{flatSources?.map(({ node }) =>
node.flags?.featured && linkToSeeAll.includes('featured') ? (
<SquadGrid key={node.id} source={node} className="max-w-80" />
<SquadGrid key={node.id} source={node} className="w-80" />
) : (
<UnfeaturedSquadGrid
key={node.id}
source={node}
className="max-w-80"
/>
<UnfeaturedSquadGrid key={node.id} source={node} className="w-80" />
),
)}
</HorizontalScroll>
Expand Down

0 comments on commit c5c7500

Please sign in to comment.