From bb367ab6329d7e072ceb04ab07df3cb34e45ceb3 Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Sat, 21 Feb 2026 01:26:58 -0800 Subject: [PATCH] fix: update gateway name to 'castle-gateway' for correct identification --- app/src/pages/ComponentDetail.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/pages/ComponentDetail.tsx b/app/src/pages/ComponentDetail.tsx index 8770684..6f75594 100644 --- a/app/src/pages/ComponentDetail.tsx +++ b/app/src/pages/ComponentDetail.tsx @@ -22,7 +22,7 @@ export function ComponentDetailPage() { const isDown = health?.status === "down" const isTool = component?.roles.includes("tool") ?? false const { data: toolDetail } = useToolDetail(isTool ? (name ?? "") : "") - const isGateway = name === "gateway" + const isGateway = name === "castle-gateway" const { data: caddyfile } = useCaddyfile(isGateway) const [showUnit, setShowUnit] = useState(false) const { data: unitData } = useSystemdUnit(name ?? "", showUnit && !!component?.systemd)