1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Convert Menu components to TypeScript

(cherry picked from commit 12a1ef038753cdab89ae7137d06e1ba3810166b1)
This commit is contained in:
Mark McDowall
2024-12-22 15:41:53 -08:00
committed by Bogdan
parent 4dc02dcb80
commit 78f3b1f403
40 changed files with 746 additions and 1063 deletions
+1 -1
View File
@@ -183,7 +183,7 @@ function Queue() {
});
const handleFilterSelect = useCallback(
(selectedFilterKey: string) => {
(selectedFilterKey: string | number) => {
dispatch(setQueueFilter({ selectedFilterKey }));
},
[dispatch]