From 3c7611618607ff76614bad3d573f5865ccef802c Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 28 Oct 2024 20:41:34 +0530 Subject: [PATCH] chore: lint --- src/components/molecules/ColapsibleRow.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/components/molecules/ColapsibleRow.tsx b/src/components/molecules/ColapsibleRow.tsx index e600837d..6f970e6c 100644 --- a/src/components/molecules/ColapsibleRow.tsx +++ b/src/components/molecules/ColapsibleRow.tsx @@ -20,7 +20,7 @@ const RunTypeChip: React.FC = ({ runByUserId, runByScheduledId if (runByUserId) return ; if (runByScheduledId) return ; if (runByAPI) return ; - return ; + return ; }; interface CollapsibleRowProps { @@ -35,12 +35,12 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun const [open, setOpen] = useState(isOpen); const [openSettingsModal, setOpenSettingsModal] = useState(false); const runByLabel = row.runByUserId - ? `User ID: ${row.runByUserId}` - : row.runByScheduleId - ? `Schedule ID: ${row.runByScheduleId}` - : row.runByAPI - ? 'API' - : 'Unknown'; + ? `User ID: ${row.runByUserId}` + : row.runByScheduleId + ? `Schedule ID: ${row.runByScheduleId}` + : row.runByAPI + ? 'API' + : 'Unknown'; const logEndRef = useRef(null);