Added bracketSpacing into prettier (#627)

This commit is contained in:
yuri-sakharov
2025-11-27 13:27:16 +02:00
committed by GitHub
parent 3f623458b3
commit 1129651e6c
10 changed files with 155 additions and 144 deletions

View File

@@ -458,20 +458,19 @@ const Uninstall = () => {
enabled: isOpen,
});
const uninstallMutation = useMutation(
{mutationKey:["uninstall", namespace, chart],
mutationFn:() =>
const uninstallMutation = useMutation({
mutationKey: ["uninstall", namespace, chart],
mutationFn: () =>
apiService.fetchWithDefaults(
"/api/helm/releases/" + namespace + "/" + chart,
{
method: "delete",
}
),
onSuccess: () => {
window.location.href = "/";
},
}
);
onSuccess: () => {
window.location.href = "/";
},
});
const uninstallTitle = (
<div className="font-semibold text-lg">
Uninstall <span className="text-red-500">{chart}</span> from namespace{" "}