chore: upgrade all dependencies

This commit is contained in:
Lei Nelissen
2024-02-08 22:11:43 +01:00
parent 0489e1a86d
commit fb4af1b7c6
23 changed files with 797 additions and 1161 deletions

View File

@@ -1,4 +1,4 @@
import { createSelector, EntityId } from '@reduxjs/toolkit';
import { createSelector } from '@reduxjs/toolkit';
import { intersection } from 'lodash';
import { AppState } from '@/store';
@@ -8,7 +8,7 @@ export const selectDownloadedEntities = (state: AppState) => state.downloads.ent
/**
* Only retain the supplied trackIds that have successfully been downloaded
*/
export const selectDownloadedTracks = (trackIds: EntityId[]) => (
export const selectDownloadedTracks = (trackIds: string[]) => (
createSelector(
selectAllDownloads,
({ entities, ids }) => {