docs: fix client error for learning path (#10102)

This commit is contained in:
Shahed Nasser
2024-11-14 16:53:24 +02:00
committed by GitHub
parent 2e5fd9fd71
commit 273960f6e3
7 changed files with 83 additions and 82 deletions
@@ -68,6 +68,7 @@ export const CardDefaultLayout = ({
<Link
href={href}
className="absolute left-0 top-0 h-full w-full rounded"
prefetch={false}
/>
)}
</div>
@@ -61,6 +61,7 @@ export const CardLargeLayout = ({
<Link
href={href}
className="absolute left-0 top-0 h-full w-full rounded"
prefetch={false}
/>
)}
</div>
@@ -89,7 +89,11 @@ export const CardLayoutMini = ({
{isExternal ? <ArrowUpRightOnBox /> : <TriangleRightMini />}
</span>
{href && (
<Link href={href} className="absolute left-0 top-0 w-full h-full" />
<Link
href={href}
className="absolute left-0 top-0 w-full h-full"
prefetch={false}
/>
)}
</div>
</div>