fix(stacks): stack.env can be null [BE-12736] (#2241)

This commit is contained in:
Chaim Lev-Ari
2026-04-06 16:56:49 +03:00
committed by GitHub
parent 14f25f1e88
commit a7d2d134d0
7 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export function useUpdateStackMutation() {
type Payload = {
stackFileContent: string;
env?: EnvVarValues;
env?: EnvVarValues | null;
prune?: boolean;
webhook?: string;
repullImageAndRedeploy?: boolean;