Browse Source

change type for onZipFileStatRemove in ArchiveFilesTableProps

yohei0125 4 years ago
parent
commit
5f4ca1544b

+ 1 - 1
packages/app/src/components/Admin/ExportArchiveData/ArchiveFilesTable.tsx

@@ -7,7 +7,7 @@ import ArchiveFilesTableMenu from './ArchiveFilesTableMenu';
 
 type ArchiveFilesTableProps = {
   zipFileStats: any[],
-  onZipFileStatRemove: any,
+  onZipFileStatRemove: (string) => void,
 }
 
 const ArchiveFilesTable = (props: ArchiveFilesTableProps): JSX.Element => {