File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -702,7 +702,7 @@ const Content: React.FC<ContentProps> = ({
702702 const selectedRows = childRef . current ?. getSelectedRows ( ) ;
703703 if ( selectedRows ?. length ) {
704704 const expiredFilesExists = selectedRows . some (
705- ( c ) => isFileReadyToProcess ( c , true ) && isExpired ( ( c ?. createdAt as Date ) ?? new Date ( ) )
705+ ( c ) => isFileReadyToProcess ( c , true ) && isExpired ( ( c ?. createdAt as Date ) ?? new Date ( ) ) ) ;
706706 const largeFileExists = selectedRows . some (
707707 ( c ) => isFileReadyToProcess ( c , true ) && typeof c . size === 'number' && c . size > largeFileSize
708708 ) ;
@@ -811,7 +811,7 @@ const Content: React.FC<ContentProps> = ({
811811 open = { showExpirationModal }
812812 largeFiles = { filesForProcessing }
813813 extractHandler = { handleGenerateGraph }
814- onClose = { ( ) => setshowExpirationModal ( false ) }
814+ onClose = { ( ) => setShowExpirationModal ( false ) }
815815 loading = { extractLoading }
816816 selectedRows = { childRef . current ?. getSelectedRows ( ) as CustomFile [ ] }
817817 isLargeDocumentAlert = { false }
You can’t perform that action at this time.
0 commit comments