refactor(show-traefik-actions): remove error handling for Traefik reload failure

This commit is contained in:
Mauricio Siu 2025-03-15 23:00:54 -06:00
parent d13871cd08
commit 4c5bc541d6

View File

@ -59,9 +59,7 @@ export const ShowTraefikActions = ({ serverId }: Props) => {
.then(async () => { .then(async () => {
toast.success("Traefik Reloaded"); toast.success("Traefik Reloaded");
}) })
.catch(() => { .catch(() => {});
toast.error("Error reloading Traefik");
});
}} }}
className="cursor-pointer" className="cursor-pointer"
> >