Skip to content

Commit

Permalink
Fix props undefined (APSL#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
yskoht committed Sep 8, 2020
1 parent 0301d5e commit 195404b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/KeyboardAwareHOC.js
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ function KeyboardAwareHOC(
_handleRef = (ref: React.Component<*>) => {
this._rnkasv_keyboardView = ref ? hocOptions.extractNativeRef(ref) : ref
if (this.props.innerRef) {
this.props.innerRef(this._rnkasv_keyboardView)
this.props.innerRef(this.getScrollResponder())
}
}

Expand Down

0 comments on commit 195404b

Please sign in to comment.