diff --git a/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx b/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx
index d5b876aa..014f82a5 100644
--- a/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx
+++ b/apps/dokploy/components/dashboard/compose/domains/show-domains.tsx
@@ -331,7 +331,7 @@ export const ShowDomainsCompose = ({ composeId }: Props) => {
) : validationState?.error ? (
<>
- DNS Invalid
+ {validationState.error}
>
) : (
<>
diff --git a/apps/dokploy/components/dashboard/database/backups/show-backups.tsx b/apps/dokploy/components/dashboard/database/backups/show-backups.tsx
index ff31da75..a50d2057 100644
--- a/apps/dokploy/components/dashboard/database/backups/show-backups.tsx
+++ b/apps/dokploy/components/dashboard/database/backups/show-backups.tsx
@@ -20,7 +20,6 @@ import { useState } from "react";
import { toast } from "sonner";
import type { ServiceType } from "../../application/advanced/show-resources";
import { RestoreBackup } from "./restore-backup";
-import { AlertBlock } from "@/components/shared/alert-block";
import { HandleBackup } from "./handle-backup";
import { cn } from "@/lib/utils";
import {
@@ -164,14 +163,6 @@ export const ShowBackups = ({
) : (
-
- {backupType === "compose" && (
-
- Deploy is required to apply changes after creating or
- updating the service name in the backup.
-
- )}
-
{postgres?.backups.map((backup) => (
@@ -300,7 +291,7 @@ export const ShowBackups = ({
setActiveManualBackup(undefined);
}}
>
-
+
Run Manual Backup