fix: file mimeType related issues (#922)

This commit is contained in:
Aman Harwara
2022-03-14 01:19:55 +05:30
committed by GitHub
parent 0b17b32b0c
commit a1c7ad7d7e
7 changed files with 15 additions and 46 deletions

View File

@@ -22,7 +22,7 @@ import { useCloseOnBlur } from '../utils';
import { PopoverFileItemProps } from './PopoverFileItem';
import { PopoverFileItemActionType } from './PopoverFileItemAction';
type Props = Omit<PopoverFileItemProps, 'renameFile'> & {
type Props = Omit<PopoverFileItemProps, 'renameFile' | 'getIconType'> & {
setIsRenamingFile: StateUpdater<boolean>;
};