diff --git a/src/entities/home/ui/day-status-box-container2.tsx b/src/entities/home/ui/day-status-box-container2.tsx
index 9a24894..e8801b3 100644
--- a/src/entities/home/ui/day-status-box-container2.tsx
+++ b/src/entities/home/ui/day-status-box-container2.tsx
@@ -4,7 +4,6 @@ import { IMAGE_ROOT } from '@/shared/constants/common';
import { HomeMonthParams, HomeMonthResponse, HomeOverviewParams, HomeOverviewResponse, Sales, Settlement, TopPaymentMethodInfo, TopSalesDayInfo, TopSalesTimeInfo } from '../model/types';
import { useHomeOverviewMutation } from '../api/use-home-overview-mutation';
import { useHomeMonthwMutation } from '../api/use-home-month-mutation';
-import { NumericFormat } from 'react-number-format';
import { useNavigate } from '@/shared/lib/hooks';
import { PATHS } from '@/shared/constants/paths';
import { useStore } from '@/shared/model/store';
@@ -115,13 +114,8 @@ export const BoxContainer2 = () => {
{t('home.money', { value: new Intl.NumberFormat('en-US').format(sales?.currentMonthAmount || 0) })}
= 0)? 'plus': 'minus'}` }>
- = 0)? '↑ ': '↓ '}` }
- suffix='%'
- >
+ {(salesIncrease && salesIncrease >= 0) ? '↑ ' : '↓ '}
+ {new Intl.NumberFormat('en-US').format(Math.abs(salesIncrease || 0))}%
{
{t('home.money', { value: new Intl.NumberFormat('en-US').format(settlement?.currentMonthSettlementAmount || 0) })}
= 0)? 'plus': 'minus'}` }>
- = 0)? '↑ ': '↓ '}` }
- suffix='%'
- >
+ {(settlementIncrease && settlementIncrease >= 0) ? '↑ ' : '↓ '}
+ {new Intl.NumberFormat('en-US').format(Math.abs(settlementIncrease || 0))}%
{
{t('home.money', { value: new Intl.NumberFormat('en-US').format(dailyAverageSales || 0) })}
- ()
+ ({t('home.count', { value: new Intl.NumberFormat('en-US').format(dailyAverageCount || 0) })})