From 1984262a655f61e0fa34a6d1b5127b4f357be618 Mon Sep 17 00:00:00 2001 From: Joseph Steele Date: Fri, 15 May 2026 22:56:32 +0100 Subject: [PATCH] fix(examples): rename DisabledAutoFocus fixture to FocusOnHoverDisabled Fixes #163 /claim #163 --- src/examples/2025/board.fixture.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/examples/2025/board.fixture.tsx b/src/examples/2025/board.fixture.tsx index 65ae1b74..3c5a6e0b 100644 --- a/src/examples/2025/board.fixture.tsx +++ b/src/examples/2025/board.fixture.tsx @@ -112,7 +112,7 @@ export const AtariBoard = () => { ) } -export const DisabledAutoFocus = () => { +export const FocusOnHoverDisabled = () => { const circuit = new Circuit() circuit.add() @@ -121,7 +121,7 @@ export const DisabledAutoFocus = () => { return (
- +
) } @@ -131,4 +131,5 @@ export default { TriangleBoard, OctagonBoard, AtariBoard, + FocusOnHoverDisabled, }