Skip to content

Commit

Permalink
fix(MOSIP-29272): remove paste option for pin inputs (mosip#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
sree96 authored and tilak-puli committed Oct 10, 2023
1 parent 6eb4e56 commit 64a195a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/PinInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ export const PinInput: React.FC<PinInputProps> = props => {
}, [state]);

return (
<Row width="100%" testID={props.testID}>
<Row width="100%" testID={props.testID} removeClippedSubviews={true}>
{inputRefs.map((input, index) => (
<TextInput
contextMenuHidden={true}
selectTextOnFocus
keyboardType="numeric"
maxLength={1}
Expand Down

0 comments on commit 64a195a

Please sign in to comment.