mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-24 22:36:19 -04:00
Convert Tags to TypeScript
This commit is contained in:
@@ -6,7 +6,10 @@ import sortByProp from 'Utilities/Array/sortByProp';
|
||||
|
||||
export default function createRootFoldersSelector() {
|
||||
return createSelector(
|
||||
createSortedSectionSelector<RootFolder>('rootFolders', sortByProp('path')),
|
||||
createSortedSectionSelector<RootFolder, RootFolderAppState>(
|
||||
'rootFolders',
|
||||
sortByProp('path')
|
||||
),
|
||||
(rootFolders: RootFolderAppState) => rootFolders
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user