We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5680ad5 commit c822ab4Copy full SHA for c822ab4
src/app/not-found.tsx
@@ -13,7 +13,8 @@ export default function Page() {
13
name: "graphql.github.io",
14
}
15
16
- const title = `Found broken \`${mounted ? pathname?.replace(/\/$/, "") : ""}\` link. Please fix!`
+ const referrer = mounted && document.referrer
17
+ const title = `Found broken \`${mounted ? pathname?.replace(/\/$/, "") : ""}\` link${referrer ? ` from \`${referrer}\`` : ""}. Please fix!`
18
const labels = "bug"
19
20
const url = `${repo.origin}/${repo.owner}/${
0 commit comments