fix(shared): Reflect MFA status in account links
This commit is contained in:
parent
dd1913e499
commit
a0933a33cc
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ export const AccountLinks = () => {
|
|||
control: <ControlScore control={account.control} />,
|
||||
github: account.data.githubUsername || account.data.githubEmail || <NoIcon />,
|
||||
password: account.passwordType === 'v3' ? <BoolYesIcon /> : <NoIcon />,
|
||||
mfa: <YesNo check={false} />,
|
||||
mfa: <YesNo check={account.mfaEnabled} />,
|
||||
}
|
||||
for (const social of Object.keys(conf.account.fields.identities).filter((i) => i !== 'github'))
|
||||
itemPreviews[social] = account.data[social] || (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue