Skip to content

Commit

Permalink
Fix newline in UtilitiesTable.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmohan committed Nov 21, 2023
1 parent e862f03 commit 8667918
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Utilities/UtilitiesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8667918

Please sign in to comment.