diff --git a/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx b/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx index a8a8470d..639ea6ea 100644 --- a/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx +++ b/apps/dokploy/components/dashboard/settings/notifications/add-notification.tsx @@ -734,6 +734,7 @@ export const AddNotification = () => { } else if (type === "discord") { await testDiscordConnection({ webhookUrl: form.getValues("webhookUrl"), + decoration: form.getValues("decoration"), }); } else if (type === "email") { await testEmailConnection({ diff --git a/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx b/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx index 533096fd..f9c75cd9 100644 --- a/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx +++ b/apps/dokploy/components/dashboard/settings/notifications/update-notification.tsx @@ -692,6 +692,7 @@ export const UpdateNotification = ({ notificationId }: Props) => { } else if (type === "discord") { await testDiscordConnection({ webhookUrl: form.getValues("webhookUrl"), + decoration: form.getValues("decoration"), }); } else if (type === "email") { await testEmailConnection({