* feat: add dim and blur to unavailable 2fa * feat: message over disabled 2FA * feat: 2fa remove overlay and dimming * fix: add newline to _ui,css * fix: tsc errors * Update app/assets/javascripts/preferences/panes/two-factor-auth/TwoFactorAuthView.tsx Co-authored-by: Vardan Hakobyan <vardan_live@live.com> * refactor: rename s to status Co-authored-by: Vardan Hakobyan <vardan_live@live.com>
14 lines
477 B
TypeScript
14 lines
477 B
TypeScript
import { FunctionComponent } from 'preact';
|
|
import { useState } from 'preact/hooks';
|
|
import { MfaProps } from './MfaProps';
|
|
import { TwoFactorAuth } from './TwoFactorAuth';
|
|
import { TwoFactorAuthView } from './TwoFactorAuthView';
|
|
|
|
export const TwoFactorAuthWrapper: FunctionComponent<MfaProps> = (props) => {
|
|
const [auth] = useState(
|
|
() => new TwoFactorAuth(props.mfaProvider, props.userProvider)
|
|
);
|
|
auth.fetchStatus();
|
|
return <TwoFactorAuthView auth={auth} />;
|
|
};
|