Zachoo
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
just need to leave app in background for several hours before i get the issue so annoying
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
and a screen recording incase is helpful
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
I will share sentery logs with you aswell once theyare in
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
Great apreciate the work you are doing i love the convex platform so all good !
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
yes I was having those issue with clerk auth hence setup with clerk to see if they fix haha
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
have even tried to split out to ensure clerk is loaded first that file is extract from root _layout.tsx
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
import {
ClerkProvider,
ClerkLoaded,
useAuth,
useUser,
} from "@clerk/clerk-expo";
import { Slot, SplashScreen } from "expo-router";
import { tokenCache } from "./cache";
import "../global.css";
import { BottomSheetModalProvider } from "@gorhom/bottom-sheet";
import { GestureHandlerRootView } from "react-native-gesture-handler";
import { ConvexProvider, ConvexReactClient } from "convex/react";
import { ConvexQueryCacheProvider } from "convex-helpers/react/cache";
import { ConvexProviderWithClerk } from "convex/react-clerk";
import { useEffect, useState } from "react";
// Initialize ConvexReactClient
const convex = new ConvexReactClient(process.env.EXPO_PUBLIC_CONVEX_URL!, {
verbose: true,
});
function AuthenticatedLayout() {
const { isLoaded: isUserLoaded, isSignedIn } = useUser();
useEffect(() => {
if (isUserLoaded) {
SplashScreen.hideAsync();
}
}, [isUserLoaded]);
return (
<ConvexProviderWithClerk useAuth={useAuth} client={convex}>
<ConvexQueryCacheProvider>
<BottomSheetModalProvider>
<Slot screenOptions={{ headerShown: false }} />
</BottomSheetModalProvider>
</ConvexQueryCacheProvider>
</ConvexProviderWithClerk>
);
}
export default function RootLayout() {
const publishableKey = process.env.EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY!;
useEffect(() => {
SplashScreen.preventAutoHideAsync();
}, []);
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<ClerkProvider tokenCache={tokenCache} publishableKey={publishableKey}>
<ClerkLoaded>
<AuthenticatedLayout />
</ClerkLoaded>
</ClerkProvider>
</GestureHandlerRootView>
);
}
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
because if i clear app from background/app draw and reopen everything loads fine user does not have to login again
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
these functions call when i hit dashboard and fail i think because they fire before clerk has resynced user session with convex after inactivity
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)

93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
very true cant just open console haha
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
just a user is unauthenticated error
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
Im adding sentry currently , short answer no
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
same white screen if i leave app in background reopen it will show me the splash and then splash disapears i load home route which fetches data from convex re current user and i get error in convex and white screen in app but if i clear from background and reopen everything loads fine
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
I open the app and it is authough it has the cached view so i load homeroute fine then if i switch to another route the screen goes white
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
i will get a screen recording for your reference aswell as the logs if it is a know bug
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
ios
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
if i send app to background wait say 2 hours and reopen and fetch data from convex app just shows a white screen and does nothing until i clear app from background and reopen then i am logged in fine and its all good
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
using expo native app
93 replies
CCConvex Community
•Created by Zachoo on 3/1/2025 in #support-community
Auth token is not a valid JWT with ConvexProviderWithClerk (EXPO)
Yes with clerk
93 replies