diff --git a/apps/dokploy/components/dashboard/swarm/show/show-nodes.tsx b/apps/dokploy/components/dashboard/swarm/show/show-nodes.tsx index 6c5bd99d6..e629654f7 100644 --- a/apps/dokploy/components/dashboard/swarm/show/show-nodes.tsx +++ b/apps/dokploy/components/dashboard/swarm/show/show-nodes.tsx @@ -1,16 +1,14 @@ -import React from "react"; -import { SwarmList, columns } from "./columns"; -import { DataTable } from "./data-table"; import { api } from "@/utils/api"; +import React from "react"; +import { columns } from "./columns"; +import { DataTable } from "./data-table"; function ShowSwarmNodes() { - const { data, isLoading } = api.swarm.getNodes.useQuery(); + const { data, isLoading } = api.swarm.getNodes.useQuery(); - console.log(data); - - return ( - - ); + return ( + + ); } export default ShowSwarmNodes;