Skip to content

Commit 717a2dd

Browse files
committed
Disable link from UcCard component
Eliminated the 'href' and 'slug' props from UcCard in the use-cases page.
1 parent 789d777 commit 717a2dd

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/pages/use-cases.astro

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,7 @@ const description = fm.description;
5656
>
5757
{
5858
useCases.map((useCase) => (
59-
<UcCard
60-
title={useCase.data.title}
61-
description={useCase.data.description || ''}
62-
href={`/use-cases/${useCase.data.slug || useCase.id}`}
63-
slug={useCase.data.slug || useCase.id}
64-
/>
59+
<UcCard title={useCase.data.title} description={useCase.data.description || ''} />
6560
))
6661
}
6762
</div>

0 commit comments

Comments
 (0)