Skip to content
This repository was archived by the owner on Jun 4, 2025. It is now read-only.

Commit 50c96e8

Browse files
committed
Custom change
1 parent 4d30930 commit 50c96e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default class App extends Component {
2222
</View>
2323
<Weeloop
2424
ref={this.weeloop}
25-
isCustom={false}
25+
custom={false}
2626
appGuid="67540390-b3c1-11e9-a487-43674d54ecce"
2727
user={{
2828

Components/Weloop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default class Weloop extends Component {
2525
super();
2626
this.webView = React.createRef();
2727
this.state.isButtonVisible =
28-
props.isCustom === false || props.isCustom === undefined;
28+
props.custom === false || props.custom === undefined;
2929
}
3030

3131
componentDidMount() {

0 commit comments

Comments
 (0)