Skip to content

Commit

Permalink
fix: wrap room card in dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritanand committed Jan 27, 2024
1 parent 612e037 commit edb1378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async function Dashboard() {
<Welcome />
<CreateRoom />
</div>
<div className="sm:gap-18 flex flex-col items-center justify-center gap-8 lg:flex-row">
<div className="sm:gap-18 flex flex-col flex-wrap items-center justify-center gap-8 lg:flex-row">
{usersRooms.map((room) => (
<RoomCard key={room.id} room={room} />
))}
Expand Down

0 comments on commit edb1378

Please sign in to comment.