import React from "react"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { api } from "@/utils/api"; import { StopPostgres } from "./stop-postgres"; import { StartPostgres } from "../start-postgres"; import { DockerTerminalModal } from "../../settings/web-server/docker-terminal-modal"; import { Terminal } from "lucide-react"; import { DeployPostgres } from "./deploy-postgres"; import { ResetPostgres } from "./reset-postgres"; interface Props { postgresId: string; } export const ShowGeneralPostgres = ({ postgresId }: Props) => { const { data } = api.postgres.one.useQuery( { postgresId, }, { enabled: !!postgresId }, ); return (