File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6372,7 +6372,7 @@ class Wr {
63726372 } = await w . auth . signInWithOAuth ( {
63736373 provider : e ,
63746374 options : {
6375- redirectTo : `${ window . location . origin } /dashboard`
6375+ redirectTo : `${ window . __ISO_ORIGIN__ || window . location . origin } /dashboard`
63766376 }
63776377 } ) ;
63786378 return s ? ( console . error ( `[AuthService] signInWithOAuth (${ e } ) error:` , s . message ) , {
@@ -6452,7 +6452,7 @@ class Wr {
64526452 const {
64536453 error : t
64546454 } = await w . auth . resetPasswordForEmail ( e , {
6455- redirectTo : `${ window . location . origin } /reset-password`
6455+ redirectTo : `${ window . __ISO_ORIGIN__ || window . location . origin } /reset-password`
64566456 } ) ;
64576457 return t ? {
64586458 success : ! 1 ,
@@ -6589,7 +6589,7 @@ class Wr {
65896589 } = await w . auth . linkIdentity ( {
65906590 provider : e ,
65916591 options : {
6592- redirectTo : `${ window . location . origin } /dashboard`
6592+ redirectTo : `${ window . __ISO_ORIGIN__ || window . location . origin } /dashboard`
65936593 }
65946594 } ) ;
65956595 return s ? ( console . error ( "[AuthService] linkIdentity error:" , s . message ) , {
You can’t perform that action at this time.
0 commit comments