Browse Source

biome

pull/300/head
Hunter Thornsberry 2 years ago
parent
commit
f2aa5bfbee
  1. 5
      src/components/PageComponents/Channel.tsx

5
src/components/PageComponents/Channel.tsx

@ -115,7 +115,10 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
description: description:
"Device telemetry is sent over PRIMARY. Only one PRIMARY allowed", "Device telemetry is sent over PRIMARY. Only one PRIMARY allowed",
properties: { properties: {
enumValue: channel.index === 0 ? {"PRIMARY":1} : {"DISABLED":0, "SECONDARY":2}, enumValue:
channel.index === 0
? { PRIMARY: 1 }
: { DISABLED: 0, SECONDARY: 2 },
}, },
}, },
{ {

Loading…
Cancel
Save