Skip to content

Commit

Permalink
Fix display of bottle name
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Aug 7, 2024
1 parent ac2bf43 commit 0ac13a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/app/(default)/(activity)/newBottles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function NewBottles() {
bottle={bottle}
className="font-medium hover:underline"
>
{bottle.brand.shortName || bottle.brand.name}
{`${bottle.brand.shortName || bottle.brand.name} ${bottle.name}`}
</BottleLink>
{bottle.isFavorite && (
<StarIcon className="h-4 w-4" aria-hidden="true" />
Expand Down

0 comments on commit 0ac13a0

Please sign in to comment.