diff --git a/src/lib/pages/domains/wizard/retry.svelte b/src/lib/pages/domains/wizard/retry.svelte index b9ac80acc..7033e3cb8 100644 --- a/src/lib/pages/domains/wizard/retry.svelte +++ b/src/lib/pages/domains/wizard/retry.svelte @@ -50,9 +50,13 @@
- In order to continue, set the following record on your DNS provider. Find a list of - domain providers and their DNS settings in our documentation. Changes may take time to - be effective. + In order to continue, set the following record on your DNS provider. DNS records may + take up to 48 hours to propagate. Please retry over the next 48 hours, but if + verification still fails, please contact support.
+ In order to continue, set the following record on your DNS provider. DNS records may + take up to 48 hours to propagate. Please retry over the next 48 hours, but if + verification still fails, please contact support. +
{#if $domain?.logs}
{/if}
diff --git a/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte b/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte
index ae94b0e9d..799e9e7f4 100644
--- a/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte
+++ b/src/routes/console/project-[project]/databases/database-[database]/collection-[collection]/(filters)/content.svelte
@@ -107,7 +107,7 @@
}
$: isDisabled = (function getDisabled() {
- return !operator || (!operator?.hideInput && !value)
+ return !operator || (!operator?.hideInput && !value);
})();
diff --git a/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte b/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte
index eae9b53aa..d4a9bf35c 100644
--- a/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte
+++ b/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte
@@ -1,5 +1,5 @@