Skip to content

Commit

Permalink
fix string return
Browse files Browse the repository at this point in the history
  • Loading branch information
charmingduchess committed Dec 20, 2024
1 parent e997956 commit 70f97b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const AvailableAtLink = ({ location }) => {

const AvailableAt = ({ location }) => {
if (!location?.endpoint) return null
else return <Text>` at ${location.prefLabel}. `</Text>
else return <> {` at ${location.prefLabel}. `}</>
}

export { AvailableByAppointment, AvailableAtLink, AvailableAt }

0 comments on commit 70f97b1

Please sign in to comment.