We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6476151 commit cc90c20Copy full SHA for cc90c20
Libraries/Experimental/IncrementalPresenter.js
@@ -68,14 +68,15 @@ class IncrementalPresenter extends React.Component<Props> {
68
this.props.onDone && this.props.onDone();
69
}
70
render() {
71
+ let style: ViewStyleProp;
72
if (
73
this.props.disabled !== true &&
74
this.context.incrementalGroupEnabled !== false &&
75
!this._isDone
76
) {
- var style = [this.props.style, {opacity: 0, position: 'absolute'}];
77
+ style = [this.props.style, {opacity: 0, position: 'absolute'}];
78
} else {
- var style = this.props.style;
79
+ style = this.props.style;
80
81
return (
82
<IncrementalGroup
0 commit comments