From 8667918eace610ec382fef293fd2ee7e130cbfb6 Mon Sep 17 00:00:00 2001 From: Harshith Mohan Date: Tue, 21 Nov 2023 15:30:30 +0530 Subject: [PATCH] Fix newline in UtilitiesTable.tsx --- src/components/Utilities/UtilitiesTable.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Utilities/UtilitiesTable.tsx b/src/components/Utilities/UtilitiesTable.tsx index 24402e3e1..d0f4668d0 100644 --- a/src/components/Utilities/UtilitiesTable.tsx +++ b/src/components/Utilities/UtilitiesTable.tsx @@ -25,7 +25,8 @@ const criteriaMap = { created: FileSortCriteriaEnum.CreatedAt, }; -const selectRowId = (target: FileType | SeriesType) => 'ID' in target ? target.ID : target.IDs.ID; +const selectRowId = (target: FileType | SeriesType) => ('ID' in target ? target.ID : target.IDs.ID); + function UtilitiesTable(props: Props) { const { setSortCriteria,