refactor(components): GenreFilterBar -> ui/ (shared), SongCard -> features/home (sole consumer)

This commit is contained in:
Psychotoxical
2026-06-30 18:50:36 +02:00
parent 0a8d82fe2a
commit 9eee4eed5b
8 changed files with 12 additions and 250 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import type { SubsonicSong } from '@/lib/api/subsonicTypes';
import React, { useRef, useState, useEffect, useMemo } from 'react';
import { ChevronLeft, ChevronRight, RefreshCw } from 'lucide-react';
import SongCard from '@/components/SongCard';
import SongCard from '@/features/home/components/SongCard';
import { usePerfProbeFlags } from '@/utils/perf/perfFlags';
import { dedupeById } from '@/lib/util/dedupeById';