diff --git a/app/soapbox/features/event/event-information.tsx b/app/soapbox/features/event/event-information.tsx index fe5380d1cc..557c3abfa8 100644 --- a/app/soapbox/features/event/event-information.tsx +++ b/app/soapbox/features/event/event-information.tsx @@ -62,27 +62,38 @@ const EventInformation: React.FC = ({ params }) => { if (!event.location) return null; const text = [ - <>{event.location.get('name')}, + + {event.location.get('name')} + , ]; if (event.location.get('street')?.trim()) { - text.push (<>
{event.location.get('street')}); + text.push ( + +
{event.location.get('street')} +
, + ); } const address = [event.location.get('postalCode'), event.location.get('locality'), event.location.get('country')].filter(text => text).join(', '); if (address) { - text.push(<>
{address}); + text.push( + +
+ {address} +
, + ); } if (tileServer && event.location.get('latitude')) { text.push( - <> +
- , +
, ); }