Skip to content

Commit 24729f3

Browse files
committed
fix(traefik): remove error toast on dashboard action failure
1 parent 3eaeaa1 commit 24729f3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

apps/dokploy/components/dashboard/settings/servers/actions/show-traefik-actions.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,7 @@ export const ShowTraefikActions = ({ serverId }: Props) => {
9797
);
9898
refetchDashboard();
9999
})
100-
.catch(() => {
101-
toast.error(
102-
`${haveTraefikDashboardPortEnabled ? "Disabled" : "Enabled"} Dashboard`,
103-
);
104-
});
100+
.catch(() => {});
105101
}}
106102
className="w-full cursor-pointer space-x-3"
107103
>

0 commit comments

Comments
 (0)