diff --git a/web/src/views/Settings/TwoFactorAuthentication/WebauthnDevices.tsx b/web/src/views/Settings/TwoFactorAuthentication/WebauthnDevices.tsx index 6f50f2919..b6b99d150 100644 --- a/web/src/views/Settings/TwoFactorAuthentication/WebauthnDevices.tsx +++ b/web/src/views/Settings/TwoFactorAuthentication/WebauthnDevices.tsx @@ -83,34 +83,34 @@ export default function TwoFactorAuthSettings(props: Props) { {"Add new device"} - - - - - - {translate("Name")} - {translate("Enabled")} - {translate("Actions")} - - - - {webauthnDevices - ? webauthnDevices.map((x, idx) => { - return ( - - ); - }) - : null} - -
-
+ {webauthnDevices ? ( + + + + + + {translate("Name")} + {translate("Enabled")} + {translate("Actions")} + + + + {webauthnDevices.map((x, idx) => { + return ( + + ); + })} + +
+
+ ) : null}