From 6ea2c7b35477e00c1f35158cfba178f95aa3f9d1 Mon Sep 17 00:00:00 2001 From: Shyam Raghuwanshi <94217498+shyamraghu@users.noreply.github.com> Date: Sun, 22 Oct 2023 19:09:43 +0530 Subject: [PATCH] fix: Resolve issue with "Back to Home" button on 404 page (#1381) Co-authored-by: Dhruwang Jariwala <67850763+Dhruwang@users.noreply.github.com> --- apps/web/app/not-found.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/app/not-found.tsx b/apps/web/app/not-found.tsx index a641a0edbc..36dd3e543f 100644 --- a/apps/web/app/not-found.tsx +++ b/apps/web/app/not-found.tsx @@ -1,5 +1,5 @@ import { Button } from "@formbricks/ui/Button"; - +import Link from "next/link"; export default function NotFound() { return ( <> @@ -9,9 +9,9 @@ export default function NotFound() {
Sorry, we couldn’t find the page you’re looking for.
- + + + > );