From a1a711ce507765a6ee8573c791b9e348481a588f Mon Sep 17 00:00:00 2001 From: Ben Furber Date: Tue, 17 Sep 2024 15:08:16 +0100 Subject: [PATCH] fix: component linting --- packages/components/src/CardList/CardList.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/components/src/CardList/CardList.tsx b/packages/components/src/CardList/CardList.tsx index 9de5e9ef70..4ef9a30a36 100644 --- a/packages/components/src/CardList/CardList.tsx +++ b/packages/components/src/CardList/CardList.tsx @@ -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 (