chore: Deactivate automatic link prefetching for `/blog` links (#7751)

* disable prefetch on the `Tips` cards
pull/7324/head
Richard Poelderl 2023-03-15 21:08:29 +01:00 committed by GitHub
parent a57519040e
commit 2cc937ba87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -147,7 +147,10 @@ export function Card({
onClick={actionButton?.onClick}
target="_blank"
rel="noreferrer"
className="text-xs font-medium">
className="text-xs font-medium"
// NextJS thinks this is an internal link and tries to prefetch it (also on hover), which fails
// TODO: Extract this into a constant to handle /docs & /developer as well
prefetch={!learnMore.href.startsWith("https://cal.com/blog")}>
{learnMore.text}
</Link>
)}