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)