We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61acd7d commit 083aff0Copy full SHA for 083aff0
1 file changed
landing/src/components/product/product-page.tsx
@@ -199,7 +199,7 @@ function FitSection({ content }: { content: ProductPageContent }) {
199
</div>
200
<div className="grid gap-4 sm:grid-cols-2">
201
{section.cards?.map((card) => (
202
- <article className="rounded-[4px] border border-black/10 p-6" key={card.title}>
+ <article className="rounded-[4px] border border-black/10 p-6" key={`${card.title}-${card.body}`}>
203
<PixelIcon name={card.icon} className="size-5 text-[#8232ff]" />
204
<DisplayHeading as="h3" size="card" className="mt-10">
205
{card.title}
0 commit comments