TanStackT
TanStack14mo ago
2 replies
hurt-tomato

is there any co-relation between useQuery and navigation container from react native?

getting the below error - Error: Couldn't find a navigation context. Have you wrapped your app with 'NavigationContainer'?

{getAppointmentsQuery.isLoading || loading ? (
<ActivityIndicator size={"large"} color={theme.colors.primary} />
) : (
mainComponent()
)}
);`

once i remove the getAppointmentsQuery.isLoading, not getting the error any more. thank you in advance!
Screenshot_1733077593.png
Was this page helpful?