Skip to content

Commit 5fda164

Browse files
connortsui20claude
andcommitted
web: point footer build-SHA link at benchmarks-website, not the monorepo
The footer SHA is VERCEL_GIT_COMMIT_SHA — this repo's deploy commit — so the commit link must resolve in vortex-data/benchmarks-website, not vortex-data/vortex (where that SHA does not exist). Per-datapoint chart commit links are unchanged: those are Vortex-library commits and correctly point at the monorepo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent d5012d3 commit 5fda164

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
export function Footer() {
1515
const fullSha = process.env.VERCEL_GIT_COMMIT_SHA ?? 'unknown';
1616
const shortSha = fullSha.slice(0, 7);
17-
const commitUrl = `https://github.com/vortex-data/vortex/commit/${fullSha}`;
17+
const commitUrl = `https://github.com/vortex-data/benchmarks-website/commit/${fullSha}`;
1818
return (
1919
<footer className="site-footer">
2020
<span className="site-footer-label">build </span>

0 commit comments

Comments
 (0)