From 22dfb56167e618306cab2189ac5f6f831f692704 Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 5 Nov 2023 21:16:43 +0000 Subject: [PATCH] make build id clickable --- src/components/Footer.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index e11abe4..6733383 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,5 +1,6 @@ import { ssrSettings } from "@/ssrSettings"; import { isProduction } from "@/utils/utils"; +import Link from "next/link"; import Card from "./Card"; const buttons = [ @@ -49,7 +50,13 @@ export default function Footer() { -
Build ID: {buildId}
+ + Build ID: {buildId} + );