Skip to content

Commit

Permalink
fix(firebase_auth): Update the position of the auth parameter for `Re…
Browse files Browse the repository at this point in the history
…captchaVerifier` in the interop code to reflect changes in `firebase-js-sdk` (#11514)
  • Loading branch information
shobith committed Aug 30, 2023
1 parent 3ed5347 commit a836dba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1077,9 +1077,9 @@ class RecaptchaVerifier
container, Map<String, dynamic> parameters, Auth auth) {
return RecaptchaVerifier.fromJsObject(
auth_interop.RecaptchaVerifierJsImpl(
auth.jsObject,
container,
jsify(parameters),
auth.jsObject,
),
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,9 @@ abstract class ApplicationVerifierJsImpl {
@JS('RecaptchaVerifier')
class RecaptchaVerifierJsImpl extends ApplicationVerifierJsImpl {
external factory RecaptchaVerifierJsImpl(
AuthJsImpl authExtern,
containerOrId,
Object parameters,
AuthJsImpl authExtern,
);
external void clear();
external PromiseJsImpl<num> render();
Expand Down

0 comments on commit a836dba

Please sign in to comment.