@@ -450,7 +450,6 @@ export class ReactNativeContainer {
450450 url : authorizeURL ,
451451 redirectURI : options . redirectURI ,
452452 shareCookiesWithDeviceBrowser : this . _shareCookiesWithDeviceBrowser ( ) ,
453- containerDelegate : this . delegate ,
454453 } ) ;
455454 const xDeviceInfo = await getXDeviceInfo ( ) ;
456455 const result = await this . baseContainer . _finishAuthentication (
@@ -508,7 +507,6 @@ export class ReactNativeContainer {
508507 url : authorizeURL ,
509508 redirectURI : options . redirectURI ,
510509 shareCookiesWithDeviceBrowser : this . _shareCookiesWithDeviceBrowser ( ) ,
511- containerDelegate : this . delegate ,
512510 } ) ;
513511 const xDeviceInfo = await getXDeviceInfo ( ) ;
514512 await this . baseContainer . _finishSettingsAction ( redirectURL , {
@@ -583,7 +581,6 @@ export class ReactNativeContainer {
583581 url : endpoint ,
584582 redirectURI : options . redirectURI ,
585583 shareCookiesWithDeviceBrowser : this . _shareCookiesWithDeviceBrowser ( ) ,
586- containerDelegate : this . delegate ,
587584 } ) ;
588585 const xDeviceInfo = await getXDeviceInfo ( ) ;
589586 const result = await this . baseContainer . _finishReauthentication (
@@ -794,7 +791,6 @@ export class ReactNativeContainer {
794791 url : authorizeURL ,
795792 redirectURI : options . redirectURI ,
796793 shareCookiesWithDeviceBrowser : this . _shareCookiesWithDeviceBrowser ( ) ,
797- containerDelegate : this . delegate ,
798794 } ) ;
799795 const result = await this . baseContainer . _finishAuthentication (
800796 redirectURL ,
@@ -893,18 +889,6 @@ export class ReactNativeContainer {
893889 ) ;
894890 }
895891
896- /**
897- * @internal
898- */
899- _sendWechatRedirectURIToDelegate ( deepLink : string ) : void {
900- const u = new URL ( deepLink ) ;
901- const params = u . searchParams ;
902- const state = params . get ( "state" ) ;
903- if ( state ) {
904- this . delegate ?. sendWechatAuthRequest ( state ) ;
905- }
906- }
907-
908892 /**
909893 * Check whether biometric is supported on the current device.
910894 * If biometric is not supported, then a platform specific error is thrown.
0 commit comments