Skip to content

Commit

Permalink
Correct a typo in status-badge-content component
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamik10 committed Apr 10, 2024
1 parent d8412c6 commit b062c78
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/apps/loan-list/materials/utils/status-badge-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,9 @@ const StatusBadgeContent: FC<StatusBadgeContentProps> = ({
}) => {
return (
<div
className={clsx(
`status-label status-label--${{
statusLabelType
}}`,
[{ "hide-on-desktop ml-16": mobileVersion }]
)}
className={clsx(`status-label status-label--${statusLabelType}`, [
{ "hide-on-desktop ml-16": mobileVersion }
])}
>
{text}
</div>
Expand Down

0 comments on commit b062c78

Please sign in to comment.