From 1fb294c3ca43a81328831f953f11656ea7bfdcb2 Mon Sep 17 00:00:00 2001 From: Jordan Shatford Date: Wed, 6 Sep 2023 10:55:26 +1000 Subject: [PATCH] chore(web): update default toast position Signed-off-by: Jordan Shatford --- apps/web/src/lib/components/ui/toast/Toasts.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/lib/components/ui/toast/Toasts.svelte b/apps/web/src/lib/components/ui/toast/Toasts.svelte index c4740a62..9721b1ed 100644 --- a/apps/web/src/lib/components/ui/toast/Toasts.svelte +++ b/apps/web/src/lib/components/ui/toast/Toasts.svelte @@ -11,7 +11,7 @@ * * The will also effect how the toasts stack on each other. */ - export let position: ToastPosition = 'bottom-left'; + export let position: ToastPosition = 'bottom-right'; /** The animation properties. */ export let animation: ToastAnimation | undefined = undefined;