Skip to content

Commit

Permalink
fix(web): Event card spacing (#17439)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
RunarVestmann and kodiakhq[bot] authored Jan 8, 2025
1 parent b3202f5 commit da87871
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const EventInformationBox = ({
<Icon color="blue400" icon="calendar" type="outline" />
<Text>{formattedDate}</Text>
</Box>
{event.time?.startTime && (
{Boolean(event.time?.startTime) && (
<Box display="flex" flexWrap="nowrap" columnGap={ICON_TEXT_SPACE}>
<Icon color="blue400" icon="time" type="outline" />
<EventTime
Expand Down

0 comments on commit da87871

Please sign in to comment.