Skip to content

Commit eaf668b

Browse files
committed
Use app_name for issuer
1 parent d8e5bf2 commit eaf668b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Auth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_user():
5050
mfa_token = st.session_state["mfa_token"]
5151
totp = pyotp.TOTP(mfa_token)
5252
otp_uri = totp.provisioning_uri(
53-
name=st.session_state["email"], issuer_name="MagicalAuth"
53+
name=st.session_state["email"], issuer_name=app_name
5454
)
5555
qr = qrcode.QRCode(
5656
version=1,

0 commit comments

Comments
 (0)