fix(notifications): add support for bottom-center'd nuxtui toasts

This commit is contained in:
Ajit Mehrotra
2025-12-09 15:01:25 -05:00
parent 7351c000b2
commit b147762e8a

View File

@@ -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;
}