diff --git a/frontend/src/components/mfa/TotpRegistration.tsx b/frontend/src/components/mfa/TotpRegistration.tsx index 59d4914f5..d9d73748f 100644 --- a/frontend/src/components/mfa/TotpRegistration.tsx +++ b/frontend/src/components/mfa/TotpRegistration.tsx @@ -1,5 +1,6 @@ import { useEffect, useState } from "react"; import QRCode from "qrcode"; +import { twMerge } from "tailwind-merge"; import { useGetUserTotpRegistration } from "@app/hooks/api"; import { useVerifyUserTotpRegistration } from "@app/hooks/api/users/mutation"; @@ -9,9 +10,10 @@ import { Button, ContentLoader, Input } from "../v2"; type Props = { onComplete?: () => Promise; + shouldCenterQr?: boolean; }; -const TotpRegistration = ({ onComplete }: Props) => { +const TotpRegistration = ({ onComplete, shouldCenterQr }: Props) => { const { data: registration, isLoading } = useGetUserTotpRegistration(); const { mutateAsync: verifyUserTotp, isLoading: isVerifyLoading } = useVerifyUserTotpRegistration(); @@ -48,16 +50,18 @@ const TotpRegistration = ({ onComplete }: Props) => { if (isLoading) { return ; } + return ( -
-
- Download a two-step verification app (Duo, Google Authenticator, etc.) and scan the QR code. +
+
+ 1. Download a two-step verification app (Duo, Google Authenticator, etc.) and scan the QR + code.
-
+
registration-qr
-
Enter the resulting verification code
+
2. Enter the resulting verification code
setTotp(e.target.value)} diff --git a/frontend/src/views/Login/Mfa.tsx b/frontend/src/views/Login/Mfa.tsx index d49455190..ce8442a69 100644 --- a/frontend/src/views/Login/Mfa.tsx +++ b/frontend/src/views/Login/Mfa.tsx @@ -118,6 +118,7 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop
{ setShouldShowTotpRegistration(false); await successCallback(); diff --git a/frontend/src/views/Settings/PersonalSettingsPage/SecuritySection/MFASection.tsx b/frontend/src/views/Settings/PersonalSettingsPage/SecuritySection/MFASection.tsx index 221b51e82..f27bf65dd 100644 --- a/frontend/src/views/Settings/PersonalSettingsPage/SecuritySection/MFASection.tsx +++ b/frontend/src/views/Settings/PersonalSettingsPage/SecuritySection/MFASection.tsx @@ -203,7 +203,7 @@ export const MFASection = () => { For added security, you can configure a mobile authenticator and set it as your selected 2FA method.
-
+
{ await queryClient.invalidateQueries(userKeys.totpConfiguration);