Skip to content

Commit

Permalink
fix responsive tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlivino committed Jul 31, 2024
1 parent bd2ab95 commit ba09ab4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SpeakerCard/SpeakerCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export const SpeakerCard = ({
</h1>
<ToggleButton isSaved={isSaved} onToggle={handleToggleSave} />
</div>
<div className="flex gap-2 w-full justify-start overflow-x-auto scrollbar-cards [&::-webkit-scrollbar]:hidden">
{(tags || ["teste", "teste2"]).map((tag: string, index) => (
<div className="flex gap-2 w-full justify-start flex-wrap">
{tags.map((tag: string, index) => (
<Badge
key={index}
variant="outline"
Expand Down

0 comments on commit ba09ab4

Please sign in to comment.