Skip to content
Snippets Groups Projects
Commit 9b1d96fc authored by Florian PERROT's avatar Florian PERROT
Browse files

fix: beer progress

parent 6dcf37d8
No related branches found
No related tags found
No related merge requests found
......@@ -35,12 +35,12 @@ export default async function Page() {
{Brandy.map(brandy => <BrandyCard key={brandy.name} brandy={brandy}/>)}
</section>
{beersInProgress.length > 0 || kombuchasInProgress.length > 0 && (
{ (beersInProgress.length > 0 || kombuchasInProgress.length > 0) &&
<section className={gridStyles.grid}>
<h2>Prochainement</h2>
{beersInProgress.map(beer => <BeerInProgressCard key={beer.name} beer={beer}/>)}
{kombuchasInProgress.map(kombucha => <KombuchaCard key={kombucha.name} kombucha={kombucha}/>)}
</section>
)}
}
</>)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment