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
Now that we have a separate function loginUI for the host app to display login UI, the host app is responsible for tracking .openedLogin event but it could be easily missed. Let's move this event tracking to login view controller's viewWillAppear so that the host app doesn't have to manually track the event using both showLogin and loginUI.
The text was updated successfully, but these errors were encountered:
Idea from @diegoreymendez: wordpress-mobile/WordPress-iOS#15687 (comment)
Currently,
.openedLogin
event is tracked inshowLogin
when the source view controller is presenting login UI:WordPressAuthenticator-iOS/WordPressAuthenticator/Authenticator/WordPressAuthenticator.swift
Line 163 in cc79aca
Now that we have a separate function
loginUI
for the host app to display login UI, the host app is responsible for tracking.openedLogin
event but it could be easily missed. Let's move this event tracking to login view controller'sviewWillAppear
so that the host app doesn't have to manually track the event using bothshowLogin
andloginUI
.The text was updated successfully, but these errors were encountered: