fix(app) : build error
All checks were successful
Build and Push Docker Image / tests (push) Successful in 51s
Build and Push Docker Image / build (push) Successful in 4m37s

This commit is contained in:
Lars Hampe 2024-11-06 22:45:18 +01:00
parent f2b952a8e9
commit a73d99afcd

View File

@ -44,9 +44,9 @@ const Component = () => {
<CardTitle>{changelog.title}</CardTitle>
</CardHeader>
<CardContent className="flex items-center justify-center flex-col">
<span>Versions: {changelog.computed.versionCount}</span>
<span>Versions: {changelog.computed?.versionCount}</span>
<span>Commits: {changelog.computed.commitCount}</span>
<span>Commits: {changelog.computed?.commitCount}</span>
</CardContent>
</Card>
</Link>