From a228ce1c9155e620d8be167206462553486e9352 Mon Sep 17 00:00:00 2001 From: Frank Stellmacher <171614930+Psychotoxical@users.noreply.github.com> Date: Mon, 11 May 2026 16:57:54 +0200 Subject: [PATCH] chore: fix stale doc references (#538) - src/test/README.md: layout listed wrong filename for the readme itself - miniPlayerBridge.ts: comment pointed at a doc that lives outside the repo --- src/test/README.md | 2 +- src/utils/miniPlayerBridge.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/README.md b/src/test/README.md index 1146d3e1..1bcdade6 100644 --- a/src/test/README.md +++ b/src/test/README.md @@ -15,7 +15,7 @@ src/test/ helpers/ factories.ts # makeTrack / makeTracks fixtures renderWithProviders.tsx # render() wrapped with MemoryRouter + i18n - CLAUDE.md # this file + README.md # this file ``` ## Running tests diff --git a/src/utils/miniPlayerBridge.ts b/src/utils/miniPlayerBridge.ts index d993650a..0c53e3c3 100644 --- a/src/utils/miniPlayerBridge.ts +++ b/src/utils/miniPlayerBridge.ts @@ -206,8 +206,8 @@ export function initMiniPlayerBridgeOnMain(): () => void { usePlayerStore.getState().redoLastQueueEdit(); }); - // Gapless ↔ Crossfade are mutually exclusive (see CLAUDE.md). Bridge handles - // the exclusion so the mini doesn't need to know about both states to act. + // Gapless ↔ Crossfade are mutually exclusive. Bridge handles the exclusion + // so the mini doesn't need to know about both states to act. const gaplessUnlisten = listen<{ value: boolean }>('mini:set-gapless', (e) => { const v = !!e.payload?.value; const a = useAuthStore.getState();