Skip to content

Commit

Permalink
fix(ClassInfo): remove location whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiazom committed Apr 12, 2024
1 parent 596a791 commit d745219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modals/ClassInfo/ClassInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export default function ClassInfo({
/>
<ClassInfoEntry
icon={<LocationOnRoundedIcon />}
label={`${_class.location.studio} ${_class.location.room && _class.location.room.length > 0 ? `, ${_class.location.room}` : ""}`}
label={`${_class.location.studio}${_class.location.room && _class.location.room.length > 0 ? `, ${_class.location.room}` : ""}`}
cancelled={_class.isCancelled}
/>
{_class.instructors.length > 0 && (
Expand Down

0 comments on commit d745219

Please sign in to comment.