fix: logs

This commit is contained in:
Arman
2025-03-26 17:36:55 +01:00
parent 8aff3a3af4
commit 04cb6e30f9
4 changed files with 4 additions and 7 deletions
@@ -12,7 +12,6 @@
<Layout.Stack>
<Accordion title="Build settings" badge="Optional">
<Layout.Stack gap="xl">
Set up how your project is built.
<InputText
id="installCommand"
label="Install command"
@@ -12,7 +12,6 @@
<Layout.Stack>
<Accordion title="Build settings" badge="Optional">
<Layout.Stack gap="xl">
Set up how your project is built.
<InputText
id="installCommand"
label="Install command"
@@ -33,11 +33,12 @@
if (deployment.status === 'failed') {
return 'Your deployment has failed.';
} else if (deployment.status === 'building') {
return 'Preparing for build ...';
//Do not remove empty space before the string it's an invisible character
return 'Preparing for build ... \n';
} else if (deployment.status === 'waiting') {
return 'Preparing for build ...';
return 'Preparing for build ... \n';
} else if (deployment.status === 'processing') {
return 'Preparing for build ...';
return 'Preparing for build ... \n';
} else {
return emptyCopy;
}
@@ -48,8 +48,6 @@
trackError(error, Submit.SiteUpdateLogging);
}
}
$: console.log(logging);
</script>
<Form onSubmit={update}>