Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crashing On IOS #1789

Open
codesalley opened this issue Dec 7, 2024 · 0 comments
Open

Crashing On IOS #1789

codesalley opened this issue Dec 7, 2024 · 0 comments

Comments

@codesalley
Copy link

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch @stripe/stripe-react-native@0.40.0 for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/@stripe/stripe-react-native/src/components/CardField.tsx b/node_modules/@stripe/stripe-react-native/src/components/CardField.tsx
index eff712e..44ded5f 100644

@@ -125,6 +125,7 @@ export const CardField = forwardRef<CardFieldInput.Methods, Props>(
 
     const onFocusHandler = useCallback(
       (event) => {
         const { focusedField } = event.nativeEvent;
         if (focusedField) {
           focusInput(inputRef.current);
@@ -173,7 +174,7 @@ export const CardField = forwardRef<CardFieldInput.Methods, Props>(
         return () => {
           unregisterInput(inputRefValue);
           if (currentlyFocusedInput() === inputRefValue) {
-            inputRefValue.blur();
+            // inputRefValue?.blur();
           }
         };
       }

This is the only way could get it to work, yet to investigate why.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant