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
This commit is contained in:
Frank Stellmacher
2026-05-11 16:57:54 +02:00
committed by GitHub
parent 123fbcc802
commit a228ce1c91
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ src/test/
helpers/ helpers/
factories.ts # makeTrack / makeTracks fixtures factories.ts # makeTrack / makeTracks fixtures
renderWithProviders.tsx # render() wrapped with MemoryRouter + i18n renderWithProviders.tsx # render() wrapped with MemoryRouter + i18n
CLAUDE.md # this file README.md # this file
``` ```
## Running tests ## Running tests
+2 -2
View File
@@ -206,8 +206,8 @@ export function initMiniPlayerBridgeOnMain(): () => void {
usePlayerStore.getState().redoLastQueueEdit(); usePlayerStore.getState().redoLastQueueEdit();
}); });
// Gapless ↔ Crossfade are mutually exclusive (see CLAUDE.md). Bridge handles // Gapless ↔ Crossfade are mutually exclusive. Bridge handles the exclusion
// the exclusion so the mini doesn't need to know about both states to act. // so the mini doesn't need to know about both states to act.
const gaplessUnlisten = listen<{ value: boolean }>('mini:set-gapless', (e) => { const gaplessUnlisten = listen<{ value: boolean }>('mini:set-gapless', (e) => {
const v = !!e.payload?.value; const v = !!e.payload?.value;
const a = useAuthStore.getState(); const a = useAuthStore.getState();