Skip to content

Commit f098c73

Browse files
committed
format document
1 parent a6110ad commit f098c73

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/src/components/supa_email_auth.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,10 @@ class _SupaEmailAuthState extends State<SupaEmailAuth> {
284284
});
285285

286286
final email = _emailController.text.trim();
287-
await supabase.auth.resetPasswordForEmail(email, redirectTo: widget.redirectTo);
287+
await supabase.auth.resetPasswordForEmail(
288+
email,
289+
redirectTo: widget.redirectTo,
290+
);
288291
widget.onPasswordResetEmailSent?.call();
289292
} on AuthException catch (error) {
290293
widget.onError?.call(error);

0 commit comments

Comments
 (0)