From 2a4a3551f01bbe738e6aef74868aab3f757ff457 Mon Sep 17 00:00:00 2001 From: Yash Kumar Date: Fri, 11 Sep 2026 20:26:08 +0530 Subject: [PATCH] fix: remove server package import in frontend component --- .../dashboard/application/deployments/show-deployment.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dokploy/components/dashboard/application/deployments/show-deployment.tsx b/apps/dokploy/components/dashboard/application/deployments/show-deployment.tsx index 0c81b4565..0a127592c 100644 --- a/apps/dokploy/components/dashboard/application/deployments/show-deployment.tsx +++ b/apps/dokploy/components/dashboard/application/deployments/show-deployment.tsx @@ -12,7 +12,7 @@ import { DialogHeader, DialogTitle, } from "@/components/ui/dialog"; -import { QUEUED_LOG_MESSAGE } from "@dokploy/server"; +const QUEUED_LOG_MESSAGE = "Waiting for worker to pick job..."; import { TerminalLine } from "../../docker/logs/terminal-line"; import { type LogLine, parseLogs } from "../../docker/logs/utils";