diff --git a/src/lib/wizard/components/Deploy.svelte b/src/lib/wizard/components/Deploy.svelte index d4e75b9..97c44ed 100644 --- a/src/lib/wizard/components/Deploy.svelte +++ b/src/lib/wizard/components/Deploy.svelte @@ -18,7 +18,7 @@ const compileDebounced = debouncer(compile, 600); let inputsWithValue = $state>({}); - let busy = $state(false); + let isDeploying = $state(false); let successMessage = $state(""); let errorMessage = $state(""); let compilationError = $state(""); @@ -309,9 +309,9 @@ }; async function triggerDeploy() { - busy = true; + isDeploying = true; await deploy(); - busy = false; + isDeploying = false; } @@ -359,7 +359,7 @@ {/if} -