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!

2 Replies
foreign-sapphire•10mo ago
i think you are in the wrong channel here, probably #react-query-questions is better suited?
variable-limeOP•10mo ago
Thank you!