From f7f51e790980f3793ec5bcc793d89b0f22be2d7f Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Mon, 8 Jan 2024 13:07:33 +0100 Subject: [PATCH] Change copy --- .../src/components/Updating.svelte | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/packages/frontend-core/src/components/Updating.svelte b/packages/frontend-core/src/components/Updating.svelte index fb5171a6ca..6b8a86425e 100644 --- a/packages/frontend-core/src/components/Updating.svelte +++ b/packages/frontend-core/src/components/Updating.svelte @@ -29,16 +29,25 @@ function migrationTimeout() { timedOut = true } - - $: text = !timedOut ? "System update" : "Something went wrong!" - $: subtext = !timedOut - ? "Please wait and we will be back in a second!" - : "An error occurred, please try again later"
- {text} - {subtext} + + {#if !timedOut} + System update + {:else} + Something went wrong! + {/if} + + + {#if !timedOut} + Please wait and we will be back in a second! + {:else} + An error occurred, please try again later. +
+ Contact support if the issue persists. + {/if}