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 f8fb7f1 commit 3c83240Copy full SHA for 3c83240
website/app/benchmarks/page.tsx
@@ -191,7 +191,7 @@ export default function BenchmarksPage() {
191
192
<div className="mt-16 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
193
{benchmarks.map((benchmark) => (
194
- <Link key={benchmark.slug} href={`/benchmarks/${benchmark.slug}`} className="block">
+ <Link key={encodeURIComponent(benchmark.slug)} href={`/benchmarks/${encodeURIComponent(benchmark.slug)}`} className="block">
195
<Card className="group overflow-hidden transition-all hover:shadow-lg cursor-pointer h-full flex flex-col">
196
<CardContent className="p-6 flex flex-col h-full">
197
{/* Thumbnail */}
0 commit comments