Skip to content

Commit

Permalink
remove file after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
perunt committed Dec 30, 2023
1 parent df41873 commit 41b6340
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 438 deletions.
6 changes: 3 additions & 3 deletions src/components/AmountTextInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const propTypes = {
style: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.object), PropTypes.object]),

/** Style for the container */
containerStyles: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.object), PropTypes.object]),
touchableInputWrapperStyle: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.object), PropTypes.object]),

/** Function to call to handle key presses in the text input */
onKeyPress: PropTypes.func,
Expand All @@ -44,7 +44,7 @@ const defaultProps = {
onSelectionChange: () => {},
onKeyPress: () => {},
style: {},
containerStyles: {},
touchableInputWrapperStyle: {},
};

function AmountTextInput(props) {
Expand All @@ -67,7 +67,7 @@ function AmountTextInput(props) {
onSelectionChange={props.onSelectionChange}
role={CONST.ROLE.PRESENTATION}
onKeyPress={props.onKeyPress}
touchableInputWrapperStyle={props.containerStyles}
touchableInputWrapperStyle={props.touchableInputWrapperStyle}
/>
);
}
Expand Down
Loading

0 comments on commit 41b6340

Please sign in to comment.