From 7a464d678a7b5c7e6d278e3080105043c7bb14ca Mon Sep 17 00:00:00 2001 From: Mike Vesprini Date: Tue, 21 May 2024 21:49:28 -0700 Subject: [PATCH] chore: linting --- app/components/Attachment/AttachmentTableRow.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/components/Attachment/AttachmentTableRow.tsx b/app/components/Attachment/AttachmentTableRow.tsx index c10effffd1..661e045d0a 100644 --- a/app/components/Attachment/AttachmentTableRow.tsx +++ b/app/components/Attachment/AttachmentTableRow.tsx @@ -68,7 +68,10 @@ const AttachmentTableRow: React.FC = ({ <> {operation && ( - {operation.charAt(0).toUpperCase() + operation.slice(1).toLowerCase()} + + {operation.charAt(0).toUpperCase() + + operation.slice(1).toLowerCase()} + )} {fileName} {fileType}