From 3b7d0098410b54f6e7fc79d68fa5f3d90abb14cd Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 6 Sep 2025 20:36:01 -0600 Subject: [PATCH] fix(search-command): remove console log for project debugging --- apps/dokploy/components/dashboard/search-command.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/dokploy/components/dashboard/search-command.tsx b/apps/dokploy/components/dashboard/search-command.tsx index 42430b6d0..e9a78a9ba 100644 --- a/apps/dokploy/components/dashboard/search-command.tsx +++ b/apps/dokploy/components/dashboard/search-command.tsx @@ -89,7 +89,6 @@ export const SearchCommand = () => { {data?.map((project) => { - console.log("project", project); const productionEnvironment = project.environments.find( (environment) => environment.name === "production", );