Error when updating screen mid-navigation
See original GitHub issueI always got this error when i’m trying to update my screen mid-navigation.
This is the code
const Component = props => (
<QueryRenderer
variables={{ id: props.id }}
query={query}
environment={environment}
render={({ error, props, retry }) => {
if(error) {
return (
<ErrorView/>
)
} else if(props) {
// got an error here
return (
<ComponentWithNoErrors/>
)
}
return <LoadingView/>
}}
/>
)
I have also made sure that ComponentWithNoErrors
has no errors as a standalone component.
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Nested navigation not being updated, and allows to mount ...
Navigation Structure This is my parent navigator, it is using mode: 'modal', main screen is not unmounted when error screen is mounted ...
Read more >React Navigation does not update screen upon login
I have done everything, but my problem is that the user is not automatically pushed to the Home screen. The user has to...
Read more >Why am I getting the LST_005 Error when updating the map?
What do I do if I get an LST_005 Error when updating my SYNC ®* 3 Navigation map? ... Tap Settings on your...
Read more >BMW 8.8 SCREEN DISPLAY MID NAVIGATION E70 X5 E71 ...
BMW 8.8 SCREEN DISPLAY MID NAVIGATION E70 X5 E71 X6 10-13 P# 65509289580 | eBay.
Read more >Google Maps Not Talking or Giving Voice Directions? 12 ...
Update Google Maps. Voice navigation won't work in outdated Google Maps versions. Likewise, Google Maps may crash or display incorrect traffic ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for letting me know. I forgot that layout-only
Views
can be removed from the hierarchyTurns out I need to set
collapsable
to false if I want to useView
. I’m closing this.