From 56470a8caeff1c83ecd74897eac5fdc223cd802c Mon Sep 17 00:00:00 2001 From: Guillaume Bernos Date: Mon, 5 Dec 2022 10:17:54 +0100 Subject: [PATCH] feat: test without assert --- .../firebase_auth/firebase_auth_web/lib/src/interop/auth.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/firebase_auth/firebase_auth_web/lib/src/interop/auth.dart b/packages/firebase_auth/firebase_auth_web/lib/src/interop/auth.dart index 68f01652c9bc..3287e0be1ba1 100644 --- a/packages/firebase_auth/firebase_auth_web/lib/src/interop/auth.dart +++ b/packages/firebase_auth/firebase_auth_web/lib/src/interop/auth.dart @@ -382,7 +382,7 @@ class Auth extends JsObjectWrapper { final errorWrapper = allowInterop((e) => _changeController!.addError(e)); void startListen() { - assert(_onAuthUnsubscribe == null); + // assert(_onAuthUnsubscribe == null); _onAuthUnsubscribe = jsObject.onAuthStateChanged(nextWrapper, errorWrapper); }