Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevespi committed May 22, 2024
1 parent 3c965ea commit 7a464d6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/components/Attachment/AttachmentTableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ const AttachmentTableRow: React.FC<Props> = ({
<>
<tr>
{operation && (
<td>{operation.charAt(0).toUpperCase() + operation.slice(1).toLowerCase()}</td>
<td>
{operation.charAt(0).toUpperCase() +
operation.slice(1).toLowerCase()}
</td>
)}
<td>{fileName}</td>
<td>{fileType}</td>
Expand Down

0 comments on commit 7a464d6

Please sign in to comment.