lint all files

This commit is contained in:
jeffvli
2025-11-29 17:38:19 -08:00
parent 96e9d54f4e
commit 108ba53be2
30 changed files with 202 additions and 545 deletions
@@ -14,20 +14,17 @@ import { ItemListKey } from '/@/shared/types/types';
interface SongListInfiniteGridProps extends ItemListGridComponentProps<SongListQuery> {}
export const SongListInfiniteGrid = forwardRef<any, SongListInfiniteGridProps>(
(
{
gap = 'md',
itemsPerPage = 100,
itemsPerRow,
query = {
sortBy: SongListSort.NAME,
sortOrder: SortOrder.ASC,
},
saveScrollOffset = true,
serverId,
({
gap = 'md',
itemsPerPage = 100,
itemsPerRow,
query = {
sortBy: SongListSort.NAME,
sortOrder: SortOrder.ASC,
},
ref,
) => {
saveScrollOffset = true,
serverId,
}) => {
const listCountQuery = songsQueries.listCount({
query: { ...query },
serverId: serverId,