diff --git a/app/auth/views/fido.py b/app/auth/views/fido.py index e85c895f..472747ac 100644 --- a/app/auth/views/fido.py +++ b/app/auth/views/fido.py @@ -104,5 +104,5 @@ def fido(): webauthn_assertion_options=webauthn_assertion_options, enable_otp=user.enable_otp, auto_activate=auto_activate, - next_url=next_url + next_url=next_url, ) diff --git a/app/auth/views/mfa.py b/app/auth/views/mfa.py index 979296c6..b7d68137 100644 --- a/app/auth/views/mfa.py +++ b/app/auth/views/mfa.py @@ -59,5 +59,5 @@ def mfa(): "auth/mfa.html", otp_token_form=otp_token_form, enable_fido=(user.fido_enabled()), - next_url=next_url + next_url=next_url, )