Skip to content

Commit 0e11348

Browse files
authored
Merge pull request #9 from bamlab/feature/withPickerValues
Fix withPickerValues
2 parents d9845a7 + 528e96d commit 0e11348

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/withPickerValues/KeyboardModal.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ const createKeyboardModalComponent = (props: _Props) => {
5454
currentProps = props;
5555

5656
keyboardModalInstance = new RootSiblings(renderModal(props));
57-
debugger;
5857
keyboardDidShowListener = Keyboard.addListener('keyboardWillShow', keyboardDidShow);
5958
};
6059

src/withPickerValues/withPickerValues.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// @flow
22

33
import React from 'react';
4-
import { compose } from 'recompose';
5-
64
import PickerModal from './PickerModal';
75

86
const withPickerModal = Component => props => {
@@ -14,4 +12,4 @@ const withPickerModal = Component => props => {
1412
);
1513
};
1614

17-
export default compose(withPickerModal);
15+
export default withPickerModal;

0 commit comments

Comments
 (0)