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
Additional Context
My project uses Expo Router, and the entry point is as follows:
<Viewstyle={styles.container}>{/* Logo */}<Animated.Viewstyle={[styles.logoContainer,{opacity: fadeAnim}]}><Imagesource={require('...')}style={styles.logo}resizeMode='contain'/></Animated.View>{/* Onboarding Screens */}{isFirstLaunch&&<OnboardingComponentfadeValue={onboardingFade}/>}</View>
The app is not wrapped with <StripeProvider> at the root due to Expo Router's limitations. Instead, specific pages are wrapped where needed, which works for mobile builds.
Question
Is this a bug in @stripe/stripe-react-native, or am I missing a configuration for Expo Web?
The text was updated successfully, but these errors were encountered:
Describe the bug
When adding the following line to my code:
or
the web server (and only the web server) throws the following error:
This issue occurs only in the web environment (Expo web). Mobile builds work as expected.
To Reproduce
Steps to reproduce the behavior:
npx expo start
.http://localhost:8081
).Expected Behavior
The web server should serve the website without throwing an error.
Screenshots
Environment
Other Dependencies
Key dependencies:
The full package.json
Additional Context
My project uses Expo Router, and the entry point is as follows:
The app is not wrapped with
<StripeProvider>
at the root due to Expo Router's limitations. Instead, specific pages are wrapped where needed, which works for mobile builds.Question
Is this a bug in
@stripe/stripe-react-native
, or am I missing a configuration for Expo Web?The text was updated successfully, but these errors were encountered: