You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The network request pop-up does not appear when a modal view, such as a login bottom sheet, is presented. For example, if I present the login bottom sheet and shake the phone, the pop-up with active requests is not displayed.
However, after completing the login process and dismissing the bottom sheet, the pop-up works as expected on the main dashboard page.
This behavior suggests the pop-up is not functioning correctly when a modal view is active.
The text was updated successfully, but these errors were encountered:
This appears to be a regression. The old version had code to determine the current (top-most) view controller, but in 2.0.0 and later it is simply just trying to present on the root view of the window, regardless of whether that view is already presenting a sheet/modal view itself.
Indeed, 2.0.0 allows presenting the view controller only via a notification. Internal function presentWormholyFlow() presents on UIApplication.shared.windows.first?.rootViewController.
The network request pop-up does not appear when a modal view, such as a login bottom sheet, is presented. For example, if I present the login bottom sheet and shake the phone, the pop-up with active requests is not displayed.
However, after completing the login process and dismissing the bottom sheet, the pop-up works as expected on the main dashboard page.
This behavior suggests the pop-up is not functioning correctly when a modal view is active.
The text was updated successfully, but these errors were encountered: