From b147762e8a188bb5256ae398266d0cf63ee53a06 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 553557a77..26773a375 100644 --- a/web/src/components/Wrapper/mount-engine.ts +++ b/web/src/components/Wrapper/mount-engine.ts @@ -153,7 +153,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; }