fix: stateURL default value

This commit is contained in:
Mustafa Uzun 2023-08-22 15:42:17 +03:00 committed by Overtorment
parent ae91eebd81
commit 6dfeca8989

View file

@ -304,7 +304,7 @@ export default class Browser extends Component {
fromWallet: context.wallets.find(w => w.getID() === props.route.params.walletID), fromWallet: context.wallets.find(w => w.getID() === props.route.params.walletID),
canGoBack: false, canGoBack: false,
pageIsLoading: false, pageIsLoading: false,
stateURL: url || 'https://wwww.duckduckgo.com/', stateURL: url || 'https://www.duckduckgo.com/',
}; };
BackHandler.addEventListener('hardwareBackPress', this.handleBackButton.bind(this)); BackHandler.addEventListener('hardwareBackPress', this.handleBackButton.bind(this));
} }