diff --git a/apps/dokploy/components/dashboard/application/rollbacks/show-env.tsx b/apps/dokploy/components/dashboard/application/rollbacks/show-env.tsx deleted file mode 100644 index 0365449f..00000000 --- a/apps/dokploy/components/dashboard/application/rollbacks/show-env.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import { - Dialog, - DialogContent, - DialogDescription, - DialogHeader, - DialogTitle, - DialogTrigger, -} from "@/components/ui/dialog"; -import { Button } from "@/components/ui/button"; -import { Eye } from "lucide-react"; -import { CodeEditor } from "@/components/shared/code-editor"; - -interface Props { - env: string | null; -} - -export const ShowEnv = ({ env }: Props) => { - if (!env) return null; - - return ( - - - - - - - Environment Variables - - Environment variables for this rollback version - - - -
- -
-
-
- ); -};