Skip to content

Commit

Permalink
restore the necessary lint ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
noahm committed Nov 12, 2024
1 parent 85cc048 commit 43b3afd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/ui.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useAtomValue, useAtom, type Atom } from "jotai";
import type React from "react";
import { useEffect } from "react";
import { useEffect, useId } from "react";

import { DebugCommands } from "./DebugCommands.tsx";
import { open_smx_device, promptSelectDevice } from "./pad-coms.ts";
Expand Down Expand Up @@ -99,6 +99,7 @@ function TestDataDisplayToggle() {
const [testMode, setTestMode] = useAtom(displayTestData$);

return (
// biome-ignore lint/a11y/noLabelWithoutControl: the control is in the TypedSelect
<label>
Read Test Values:{" "}
<TypedSelect
Expand Down

0 comments on commit 43b3afd

Please sign in to comment.