Skip to content

Commit

Permalink
Add display name back to map bubbles
Browse files Browse the repository at this point in the history
  • Loading branch information
devcshort committed Aug 18, 2023
1 parent 0e7dd14 commit f720b20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/plugins/mapbox/components/map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { ReferralButton } from '../../../components/atoms/ReferralButton';
type Props = {
locations: {
_id: string;
displayName: string;
name: string;
description: string;
website: string;
phone: string;
Expand Down Expand Up @@ -97,7 +97,7 @@ export function MapComponent({ locations = [] }: Props) {
color: theme.colors.primary[theme.primaryShade as number],
}}
>
{resource.displayName}
{resource.name}
</Title>
<Text size={theme.fontSizes.xs}>{resource.description}</Text>

Expand Down

0 comments on commit f720b20

Please sign in to comment.