diff --git a/interface/app/$libraryId/Explorer/View/Grid/useKeySelection.tsx b/interface/app/$libraryId/Explorer/View/Grid/useKeySelection.tsx index 0f27876f0..cac96fb2d 100644 --- a/interface/app/$libraryId/Explorer/View/Grid/useKeySelection.tsx +++ b/interface/app/$libraryId/Explorer/View/Grid/useKeySelection.tsx @@ -75,7 +75,10 @@ export const useKeySelection = (grid: Grid, options: Options = { scrollToEnd: fa }, [explorer.items]); const updateFirstActiveItem = useCallback( - (item: ExplorerItem | null, options: UpdateActiveItemOptions = {}) => { + ( + item: ExplorerItem | null, + options: Omit = {} + ) => { if (explorerOperatingSystem !== 'windows') return; firstActiveItem.current = item;