feat(SW-713): remove undefined check

This commit is contained in:
Fredrik Thorsson
2024-10-31 22:09:53 +01:00
parent 5f210caefc
commit a61460f6ea
4 changed files with 14 additions and 17 deletions

View File

@@ -70,7 +70,7 @@ export function RoomCard({ room }: RoomCardProps) {
</Subtitle>
<Body color="grey">{subtitle}</Body>
</div>
<RoomSidePeek selectedRoom={room} buttonSize="medium" />
<RoomSidePeek room={room} buttonSize="medium" />
</div>
</article>
)