File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/no-modal/src/connectors Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ class AuthConnector extends BaseConnector<AuthLoginParams> {
463463 version : version . split ( "." ) [ 0 ] ,
464464 web3AuthNetwork : this . coreOptions . web3AuthNetwork ,
465465 web3AuthClientId : this . coreOptions . clientId ,
466- originData : JSON . stringify ( this . authInstance . options . originData ) ,
466+ originData : this . authInstance . options . originData ? JSON . stringify ( this . authInstance . options . originData ) : undefined ,
467467 } ,
468468 web3AuthClientId : this . coreOptions . clientId ,
469469 web3AuthNetwork : this . coreOptions . web3AuthNetwork ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export interface MetaMaskConnectorOptions extends BaseConnectorSettings {
3838}
3939
4040class MetaMaskConnector extends BaseEvmConnector < void > {
41- readonly connectorNamespace : ConnectorNamespaceType = CONNECTOR_NAMESPACES . MULTICHAIN ;
41+ readonly connectorNamespace : ConnectorNamespaceType = CONNECTOR_NAMESPACES . EIP155 ;
4242
4343 readonly currentChainNamespace : ChainNamespaceType = CHAIN_NAMESPACES . EIP155 ;
4444
You can’t perform that action at this time.
0 commit comments