Skip to content

Commit 195404b

Browse files
committed
Fix props undefined (APSL#451)
1 parent 0301d5e commit 195404b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/KeyboardAwareHOC.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ function KeyboardAwareHOC(
487487
_handleRef = (ref: React.Component<*>) => {
488488
this._rnkasv_keyboardView = ref ? hocOptions.extractNativeRef(ref) : ref
489489
if (this.props.innerRef) {
490-
this.props.innerRef(this._rnkasv_keyboardView)
490+
this.props.innerRef(this.getScrollResponder())
491491
}
492492
}
493493

0 commit comments

Comments
 (0)