mirror of
https://github.com/meshtastic/web.git
synced 2026-05-01 19:22:53 -04:00
chore: linting fix
This commit is contained in:
@@ -28,8 +28,8 @@ export function MultiSelectInput<T extends FieldValues>({
|
||||
// Make sure to filter out the UNSET value, as it shouldn't be shown in the UI
|
||||
const optionsEnumValues = enumValue
|
||||
? Object.entries(enumValue)
|
||||
.filter((value) => typeof value[1] === "number")
|
||||
.filter((value) => value[0] !== "UNSET")
|
||||
.filter((value) => typeof value[1] === "number")
|
||||
.filter((value) => value[0] !== "UNSET")
|
||||
: [];
|
||||
|
||||
const formatName = (name: string) => {
|
||||
|
||||
Reference in New Issue
Block a user