Skip to content

Commit 1d9ac23

Browse files
format issue
1 parent 1350146 commit 1d9ac23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/Content.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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}

0 commit comments

Comments
 (0)