Fixed: Selecting a root folder in add new artist modal

This commit is contained in:
Bogdan 2024-07-19 16:37:48 +03:00
parent e2e4a94a9f
commit ffa2167653
1 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,10 @@ import sortByProp from 'Utilities/Array/sortByProp';
export default function createRootFoldersSelector() {
return createSelector(
createSortedSectionSelector<RootFolder>('rootFolders', sortByProp('name')),
createSortedSectionSelector<RootFolder>(
'settings.rootFolders',
sortByProp('name')
),
(rootFolders: RootFolderAppState) => rootFolders
);
}