Skip to content

Commit

Permalink
fix: component linting
Browse files Browse the repository at this point in the history
  • Loading branch information
benfurber committed Sep 17, 2024
1 parent f309c3a commit a1a711c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/components/src/CardList/CardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ export const CardList = (props: IProps) => {

const isListEmpty = displayItems.length === 0
const hasListLoaded = list
const results = `${displayItems.length} result${displayItems.length == 1 ? '' : 's'} in view`
const results = `${displayItems.length} result${
displayItems.length == 1 ? '' : 's'
} in view`

return (
<Flex
Expand Down

0 comments on commit a1a711c

Please sign in to comment.