Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit 06154e3

Browse files
committed
fix(docs): header routes broken due to missing https:// prefix
1 parent 7af652a commit 06154e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/docs/app/layout.config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async function getBrandLinks() {
6464

6565
const { linkMap, nameMap } = query.docs[0].links.reduce(
6666
(acc, { name, link }) => {
67-
acc.linkMap.set(name, link)
67+
acc.linkMap.set(name, `https://${link}`)
6868
acc.nameMap.set(name, name)
6969
return acc
7070
},

0 commit comments

Comments
 (0)