We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
/blog
1 parent a575190 commit 2cc937bCopy full SHA for 2cc937b
packages/ui/components/card/Card.tsx
@@ -147,7 +147,10 @@ export function Card({
147
onClick={actionButton?.onClick}
148
target="_blank"
149
rel="noreferrer"
150
- className="text-xs font-medium">
+ className="text-xs font-medium"
151
+ // NextJS thinks this is an internal link and tries to prefetch it (also on hover), which fails
152
+ // TODO: Extract this into a constant to handle /docs & /developer as well
153
+ prefetch={!learnMore.href.startsWith("https://cal.com/blog")}>
154
{learnMore.text}
155
</Link>
156
)}
0 commit comments