From f690c23a205db1e5e140aaaf62e15e7e5d79f839 Mon Sep 17 00:00:00 2001 From: Ajit Mehrotra Date: Tue, 9 Dec 2025 15:01:25 -0500 Subject: [PATCH] fix(notifications): add support for bottom-center'd nuxtui toasts --- web/src/components/Wrapper/mount-engine.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/components/Wrapper/mount-engine.ts b/web/src/components/Wrapper/mount-engine.ts index 1e73f6d21..ec84f4708 100644 --- a/web/src/components/Wrapper/mount-engine.ts +++ b/web/src/components/Wrapper/mount-engine.ts @@ -174,7 +174,8 @@ export async function mountUnifiedApp() { 'top-right': 'top-right', 'bottom-left': 'bottom-left', 'bottom-right': 'bottom-right', - center: 'top-center', + 'bottom-center': 'bottom-center', + 'top-center': 'top-center', }; toasterPosition = map[legacyPosition] || toasterPosition; }