Skip to content

Commit

Permalink
Missing series on bottle details
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed May 8, 2023
1 parent 5e9f513 commit a3f8352
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/web/src/routes/bottleDetails.tsx
Expand Up @@ -8,6 +8,7 @@ import Layout from "../components/layout";
import CheckinListItem from "../components/checkinListItem";
import { formatCategoryName } from "../lib/strings";
import Button from "../components/button";
import BottleName from "../components/bottleName";

type BottleWithStats = Bottle & {
stats: {
Expand Down Expand Up @@ -70,7 +71,7 @@ export default function BottleDetails() {
<div className="min-w-full flex flex-wrap sm:flex-nowrap my-8 gap-y-4">
<div className="space-y-1 flex-1 w-full sm:w-auto flex flex-col items-center sm:items-start">
<h1 className="flex gap-x-3 mb-2 leading-7 font-semibold text-3xl text-peated">
{bottle.name}
<BottleName bottle={bottle} />
</h1>
<p className="text-sm font-light text-gray-500">
Produced by{" "}
Expand Down

0 comments on commit a3f8352

Please sign in to comment.