diff --git a/src/pages/dashboards/home/blocks/Card.tsx b/src/pages/dashboards/home/blocks/Card.tsx
index d2f065a..0665599 100644
--- a/src/pages/dashboards/home/blocks/Card.tsx
+++ b/src/pages/dashboards/home/blocks/Card.tsx
@@ -10,7 +10,7 @@ interface CardDataProduct {
icon: string;
}
-const Card = ({ title, total, growth, surplus,icon }: CardDataProduct) => {
+const Card = ({ title, total, growth, surplus, icon }: CardDataProduct) => {
const { isRTL } = useLanguage();
return (
@@ -21,12 +21,12 @@ const Card = ({ title, total, growth, surplus,icon }: CardDataProduct) => {
{title}
{total}
- {surplus ? '▲' : '▼'} {growth} % From Last Week
+ {growth === 0 ? '−' : surplus ? '▲' : '▼'} {growth} % From Last Week
+