diff --git a/frontend/src/pages/user/PersonalSettingsPage/components/SecuritySection/MFASection.tsx b/frontend/src/pages/user/PersonalSettingsPage/components/SecuritySection/MFASection.tsx index 008271f29..b3b19d75c 100644 --- a/frontend/src/pages/user/PersonalSettingsPage/components/SecuritySection/MFASection.tsx +++ b/frontend/src/pages/user/PersonalSettingsPage/components/SecuritySection/MFASection.tsx @@ -476,15 +476,15 @@ export const MFASection = () => { {shouldShowRecoveryCodes && ( -
- {totpConfiguration.recoveryCodes.map((code) => ( - - {code} - - ))} +
+
+ {totpConfiguration.recoveryCodes.map((code, index) => ( +
+ {index + 1}. + {code} +
+ ))} +
)}