We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3a7fa2 commit 8d3dc67Copy full SHA for 8d3dc67
Assets/Thirdweb/Runtime/Unity/Wallets/Core/WalletConnectWallet.cs
@@ -279,6 +279,10 @@ protected static void CreateNewSession(string[] supportedChains)
279
280
// Open modal
281
WalletConnectModal.Open(new WalletConnectModalOptions { ConnectOptions = connectOptions, IncludedWalletIds = _includedWalletIds });
282
+ WalletConnectModal.ModalClosed += (sender, e) =>
283
+ {
284
+ _exception = new Exception("WalletConnect modal was closed.");
285
+ };
286
}
287
catch (Exception e)
288
{
0 commit comments