From 084905c1461ec6f86b03da4d4f6f6300ad9a7fc0 Mon Sep 17 00:00:00 2001 From: Minseo Lee Date: Thu, 12 Dec 2024 12:48:02 +0900 Subject: refine plural marks (#7065) --- src/components/LabelingServiceCard/index.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/components/LabelingServiceCard/index.tsx') diff --git a/src/components/LabelingServiceCard/index.tsx b/src/components/LabelingServiceCard/index.tsx index 03b8ece6b..b144c1dc8 100644 --- a/src/components/LabelingServiceCard/index.tsx +++ b/src/components/LabelingServiceCard/index.tsx @@ -83,7 +83,7 @@ export function RegionalNotice() { ) } -export function LikeCount({count}: {count: number}) { +export function LikeCount({likeCount}: {likeCount: number}) { const t = useTheme() return ( - + + Liked by + ) } @@ -138,7 +140,7 @@ export function Default({ value={labeler.creator.description} handle={labeler.creator.handle} /> - {labeler.likeCount ? : null} + {labeler.likeCount ? : null} ) -- cgit 1.4.1