Browse Source

cleanup

pull/293/head
Hunter Thornsberry 2 years ago
parent
commit
c2f2205626
  1. 8
      src/components/PageComponents/Config/Security.tsx

8
src/components/PageComponents/Config/Security.tsx

@ -129,8 +129,6 @@ export const Security = (): JSX.Element => {
publicKey: publicKey,
adminChannelEnabled: config.security?.adminChannelEnabled ?? false,
isManaged: config.security?.isManaged ?? false,
bluetoothLoggingEnabled:
config.security?.bluetoothLoggingEnabled ?? false,
debugLogApiEnabled: config.security?.debugLogApiEnabled ?? false,
serialEnabled: config.security?.serialEnabled ?? false,
},
@ -206,7 +204,6 @@ export const Security = (): JSX.Element => {
value: adminKey,
},
},
},
],
},
{
@ -217,13 +214,12 @@ export const Security = (): JSX.Element => {
type: "toggle",
name: "debugLogApiEnabled",
label: "Enable Debug Log API",
description:
"Output live debug logging over serial, view and export position-redacted device logs over Bluetooth",
description: "Output live debug logging over serial, view and export position-redacted device logs over Bluetooth",
},
{
type: "toggle",
name: "serialEnabled",
label: "Enable Serial Output",
label: "Serial Output Enabled",
description: "Serial Console over the Stream API",
},
],

Loading…
Cancel
Save