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
Signed-off-by: Tilak Puli <[email protected]>
  • Loading branch information
sree96 authored and tilak-puli committed Oct 11, 2023
1 parent 26f1391 commit 6e44a83
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 6e44a83

Please sign in to comment.