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 fe74e53cf5
commit f690c23a20

View File

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