fix(gui-v2): rename unused _bp mock arg to _ (no-unused-vars gate)

The project's no-unused-vars only ignores all-underscore names (/^_+$/u);
`_bp` in the @vueuse/core useBreakpoints mock failed it. Latent since
Task 3 — masked because the whole-codebase `pnpm lint` stylish formatter
OOMs (RangeError on the legacy-code message volume) and emitted no
results. Scoped errors-only lint surfaced it. 21/21 specs still green.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-17 03:24:19 +02:00
parent 92d8051903
commit 7d326720ab
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ const mockIsMobileRef = ref(false)
vi.mock('@vueuse/core', () => ({
breakpointsTailwind: {},
useBreakpoints: () => ({
smaller: (_bp: string) => mockIsMobileRef,
smaller: (_: string) => mockIsMobileRef,
}),
}))

View File

@@ -28,7 +28,7 @@ const mockIsMobileRef = ref(false)
vi.mock('@vueuse/core', () => ({
breakpointsTailwind: {},
useBreakpoints: () => ({
smaller: (_bp: string) => mockIsMobileRef,
smaller: (_: string) => mockIsMobileRef,
}),
}))