[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-05-18 05:12:06 +00:00
committed by GitHub
parent 5dfa7645f3
commit 0f48f2c830
2 changed files with 8 additions and 10 deletions

View File

@@ -84,11 +84,10 @@ export const IsolatedDeployment = ({ composeId }: Props) => {
await mutateAsync({ await mutateAsync({
composeId, composeId,
suffix: data?.appName || "", suffix: data?.appName || "",
}) }).then(async (data) => {
.then(async (data) => { await utils.project.all.invalidate();
await utils.project.all.invalidate(); setCompose(data);
setCompose(data); });
})
}; };
return ( return (

View File

@@ -90,11 +90,10 @@ export const RandomizeCompose = ({ composeId }: Props) => {
await mutateAsync({ await mutateAsync({
composeId, composeId,
suffix, suffix,
}) }).then(async (data) => {
.then(async (data) => { await utils.project.all.invalidate();
await utils.project.all.invalidate(); setCompose(data);
setCompose(data); });
})
}; };
return ( return (