From 70f7729463fefc986b06048e7f3bf924718d142e Mon Sep 17 00:00:00 2001 From: msukkari Date: Mon, 10 Feb 2025 14:40:24 -0800 Subject: [PATCH] fix reference to header component in connections --- packages/web/src/app/connections/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/app/connections/[id]/page.tsx b/packages/web/src/app/connections/[id]/page.tsx index 74213a51..59f08131 100644 --- a/packages/web/src/app/connections/[id]/page.tsx +++ b/packages/web/src/app/connections/[id]/page.tsx @@ -14,7 +14,7 @@ import { Tabs, TabsContent } from "@/components/ui/tabs"; import { getConnection, getLinkedRepos } from "@/data/connection"; import { isServiceError } from "@/lib/utils"; import { ConnectionIcon } from "../components/connectionIcon"; -import { Header } from "../components/header"; +import { Header } from "../../components/header"; import { ConfigSetting } from "./components/configSetting"; import { DeleteConnectionSetting } from "./components/deleteConnectionSetting"; import { DisplayNameSetting } from "./components/displayNameSetting";