diff --git a/web/src/lib/components/Toast.svelte b/web/src/lib/components/Toast.svelte index 6628763..cf7cf18 100644 --- a/web/src/lib/components/Toast.svelte +++ b/web/src/lib/components/Toast.svelte @@ -18,7 +18,7 @@ class="pointer-events-none fixed right-0 top-12 z-30 bg-gradient-to-bl from-red-500/20 via-red-500/0 to-red-500/0 pb-36 pl-36 pr-2 pt-2 md:top-0 md:pr-8 md:pt-5" >
{#if ToastType.SUCCESS === toastType} @@ -27,6 +27,6 @@ {:else if ToastType.ERROR === toastType} {/if} -

{message}

+

{message}

diff --git a/web/src/lib/components/chat/ChatIntroduction.svelte b/web/src/lib/components/chat/ChatIntroduction.svelte index b6d2ade..95d8a29 100644 --- a/web/src/lib/components/chat/ChatIntroduction.svelte +++ b/web/src/lib/components/chat/ChatIntroduction.svelte @@ -58,7 +58,7 @@ } toastStore.set({ - message: "Notification sent successfully", + message: "Notification will be sent successfully", type: ToastType.SUCCESS, }); diff --git a/web/src/lib/components/chat/ChatWindow.svelte b/web/src/lib/components/chat/ChatWindow.svelte index 141edc6..3ede7d1 100644 --- a/web/src/lib/components/chat/ChatWindow.svelte +++ b/web/src/lib/components/chat/ChatWindow.svelte @@ -156,7 +156,7 @@ } toastStore.set({ - message: "Notification sent successfully", + message: "Notification will be sent successfully", type: ToastType.SUCCESS, });