Skip to content

Commit

Permalink
open location link in new tab (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostOf0days authored Mar 11, 2024
1 parent 0e6096c commit 17db0b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/EateryCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,9 @@ function EateryCard({ location }: { location: IReadOnlyExtendedLocation }) {
/>
<CardContent>
<NameText variant="h6">
<CustomLink href={url}>{name}</CustomLink>
<CustomLink href={url} target="_blank">
{name}
</CustomLink>
</NameText>
<LocationText variant="subtitle2">
{locationText}
Expand Down

0 comments on commit 17db0b2

Please sign in to comment.