Skip to content

Commit

Permalink
fixed the numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitmalhotra1420 committed Dec 24, 2024
1 parent 4d88bf2 commit d5ab752
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/Dashboard/LineChartSet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ export default function LineChartSet() {
}
};

const fallbackNotificationsNumber = 139000000;
const fallbackNotificationsNumber = 140902329;

const fallbackSubscriberCount = 300000;
const fallbackSubscriberCount = 296625;
return (
<>
{/* <Grid
Expand Down
6 changes: 4 additions & 2 deletions components/Dashboard/OverViewSet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export default function OverViewSet() {
const { isDarkMode } = getTheme();
const isMobile = useMediaQuery('(max-width:480px)');

const fallbackNotificationNumber = 139000000;
const fallbackNotificationNumber = 140902329;

const fallbackChatNumber = 58834;
const overViewData = [
{
image: !isDarkMode ? IntegrationLightIcon : IntegrationDarkIcon,
Expand All @@ -50,7 +52,7 @@ export default function OverViewSet() {
{
image: !isDarkMode ? ChatSentLightIcon : ChatSentDarkIcon,
title: 'Chats Sent',
value: chatSent,
value: chatSent || fallbackChatNumber.toLocaleString(),
size: 51,
},
// {
Expand Down

0 comments on commit d5ab752

Please sign in to comment.