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
Both setting the component name and initial props trigger a reload. This means that for the following block, we are calling ReloadView() twice, throwing away the work of the first call.
ReloadView() checks whether a component name is set before doing anything, so unsetting the component name, doing all the set up needed, then setting the component name as the final step should fix this issue:
Both setting the component name and initial props trigger a reload. This means that for the following block, we are calling
ReloadView()
twice, throwing away the work of the first call.ReloadView()
checks whether a component name is set before doing anything, so unsetting the component name, doing all the set up needed, then setting the component name as the final step should fix this issue:However, this crashes the app. The issue has been filed upstream: microsoft/react-native-windows#5676.
The text was updated successfully, but these errors were encountered: