From 7c0064e7758c45659d21ce4f3cfb3fb26175de76 Mon Sep 17 00:00:00 2001 From: Marcin Date: Mon, 1 Sep 2025 23:55:25 +0200 Subject: [PATCH] fix: Call `onToggleRecoverPassword` after password recovery state changes. --- lib/src/components/supa_email_auth.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/src/components/supa_email_auth.dart b/lib/src/components/supa_email_auth.dart index 0fd2396..3ceb25b 100644 --- a/lib/src/components/supa_email_auth.dart +++ b/lib/src/components/supa_email_auth.dart @@ -515,6 +515,7 @@ class _SupaEmailAuthState extends State { setState(() { _isRecoveringPassword = false; }); + widget.onToggleRecoverPassword?.call(_isRecoveringPassword); }, child: Text(localization.backToSignIn), ),