diff --git a/src/index.tsx b/src/index.tsx index 2360562..1c89b0b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -147,10 +147,20 @@ export class LikeCoinWalletConnector { openConnectionMethodSelectionDialog = ({ language = this.options.language, + connectWalletTitle = this.options.connectWalletTitle, + connectWalletMobileWarning = this.options.connectWalletMobileWarning, } = {}) => { if (this.options.language !== language) { this.options.language = language; } + if (this.options.connectWalletTitle !== connectWalletTitle) { + this.options.connectWalletTitle = connectWalletTitle; + } + if ( + this.options.connectWalletMobileWarning !== connectWalletMobileWarning + ) { + this.options.connectWalletMobileWarning = connectWalletMobileWarning; + } return new Promise( async resolve => {