Skip to content

Commit a6cfa5e

Browse files
authored
Merge pull request #1 from newn-team/0.9.2-p1
Fix props undefined (APSL#451)
2 parents 6cbf7b8 + 195404b commit a6cfa5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/KeyboardAwareHOC.js

Lines changed: 1 addition & 1 deletion
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)