Skip to content

Commit

Permalink
Merge pull request #52802 from wildan-m/wildan/fix/51293-fix-gesture-…
Browse files Browse the repository at this point in the history
…in-android-modal

Fix: Number fields being unclickable on the new contact method verification page in Android.
  • Loading branch information
lakchote authored Nov 22, 2024
2 parents b3c8b56 + b343200 commit 0cf51ae
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, {forwardRef} from 'react';
import {gestureHandlerRootHOC} from 'react-native-gesture-handler';
import BaseValidateCodeForm from './BaseValidateCodeForm';
import type {ValidateCodeFormHandle, ValidateCodeFormProps} from './BaseValidateCodeForm';

Expand All @@ -11,4 +12,4 @@ const ValidateCodeForm = forwardRef<ValidateCodeFormHandle, ValidateCodeFormProp
/>
));

export default ValidateCodeForm;
export default gestureHandlerRootHOC(ValidateCodeForm);

0 comments on commit 0cf51ae

Please sign in to comment.