fix type errors

This commit is contained in:
jeffvli
2026-01-29 20:46:07 -08:00
parent 1a39182d80
commit 8ae1fb4fdb
3 changed files with 4 additions and 4 deletions
@@ -639,7 +639,7 @@ const AlbumDetailSongsTable = ({ songs }: AlbumDetailSongsTableProps) => {
const groups = useMemo(() => {
// Remove groups when filtering
if (debouncedSearchTerm.trim()) {
if (debouncedSearchTerm?.trim()) {
return undefined;
}