From 7aa0bf2c77e4e0010fa9f6c96ebc0c105754dd4e Mon Sep 17 00:00:00 2001 From: MahtabBukhari Date: Thu, 31 Oct 2024 14:02:49 +0500 Subject: [PATCH] fix(stats-text): stats tooltip text should be plural --- src/components/Stats/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Stats/index.tsx b/src/components/Stats/index.tsx index 2d06344e2..5403db00c 100644 --- a/src/components/Stats/index.tsx +++ b/src/components/Stats/index.tsx @@ -93,7 +93,7 @@ export const Stats = () => { const generateStatConfigItem = (key: string) => { const name = convertToTitleCase(key.split('_')[0]) - const tooltip = name + const tooltip = `${name}s` const primaryIcon = normalizedSchemasByType[name]?.icon const Icon = Icons[primaryIcon as string] || NodesIcon