From 3146ebf85f66357ad2f977cc3dcfb333e5c3ba8b Mon Sep 17 00:00:00 2001 From: Marco Rodolfi Date: Thu, 25 Jan 2024 17:21:11 +0100 Subject: [Bugfix] Toaster changed name again (#581) Add another name placeholder for getting the toaster out of the HTML tree. Thanks to @eXhumer for the fix. --- frontend/src/toaster.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/toaster.tsx b/frontend/src/toaster.tsx index 0db8889a..0e16bb81 100644 --- a/frontend/src/toaster.tsx +++ b/frontend/src/toaster.tsx @@ -56,7 +56,8 @@ class Toaster extends Logger { if ( currentNode?.memoizedProps?.className?.startsWith?.('gamepadtoasts_GamepadToastPlaceholder') || currentNode?.memoizedProps?.className?.startsWith?.('toastmanager_ToastPlaceholder') || - currentNode?.memoizedProps?.className?.startsWith?.('toastmanager_ToastPopup') + currentNode?.memoizedProps?.className?.startsWith?.('toastmanager_ToastPopup') || + currentNode?.memoizedProps?.className?.startsWith?.('gamepadtoasts_GamepadToastPopup') ) { this.log(`Toaster root was found in ${iters} recursion cycles`); return currentNode; -- cgit v1.2.3