From 1b73a1fbc345eef75666ecf1a83df302c09a768c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Thu, 18 Apr 2024 23:51:04 +0200 Subject: [PATCH] Black theme: set counter ring color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- src/components/ui/counter/counter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/counter/counter.tsx b/src/components/ui/counter/counter.tsx index 6594262c4..8f350f675 100644 --- a/src/components/ui/counter/counter.tsx +++ b/src/components/ui/counter/counter.tsx @@ -12,7 +12,7 @@ interface ICounter { /** A simple counter for notifications, etc. */ const Counter: React.FC = ({ count, countMax }) => { return ( - + {shortNumberFormat(count, countMax)} );