fix unused var on visualizer

This commit is contained in:
jeffvli 2025-06-24 17:48:27 -07:00
parent 1598642389
commit 1faef6a1a7

View file

@ -12,7 +12,7 @@ export const Visualizer = () => {
const accent = useSettingsStore((store) => store.general.accent); const accent = useSettingsStore((store) => store.general.accent);
const [motion, setMotion] = useState<AudioMotionAnalyzer>(); const [motion, setMotion] = useState<AudioMotionAnalyzer>();
const [length, setLength] = useState(500); const [, setLength] = useState(500);
useEffect(() => { useEffect(() => {
const { context, gain } = webAudio || {}; const { context, gain } = webAudio || {};