Skip to content

Commit 927de8b

Browse files
committed
feat: remove reduntant indicators dashboard
1 parent a71bf75 commit 927de8b

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

pages/dashboard/index.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,17 +141,19 @@ export default function Dashboard ({ user }: PaybuttonsProps): React.ReactElemen
141141
<div className={style.chart_outer_ctn}>
142142
<div className={style.chart_inner_ctn}>
143143
<div className={style.chart_title_ctn}>
144-
<h5>Revenue</h5>
145-
<h5>{totalString}: ${formatQuoteValue(activePeriod.totalRevenue, user.userProfile.preferredCurrencyId)}</h5>
144+
<div>
145+
<h5>Revenue</h5>
146+
</div>
146147
</div>
147148
<div className={style.chart_ctn}>
148149
<Chart chartData={activePeriod.revenue} currencyId={user.userProfile.preferredCurrencyId} />
149150
</div>
150151
</div>
151152
<div className={style.chart_inner_ctn}>
152153
<div className={style.chart_title_ctn}>
153-
<h5>Payments</h5>
154-
<h5>{totalString}: {formatQuoteValue(activePeriod.totalPayments)}</h5>
154+
<div>
155+
<h5>Payments</h5>
156+
</div>
155157
</div>
156158
<div className={style.chart_ctn}>
157159
<Chart chartData={activePeriod.payments} />

0 commit comments

Comments
 (0)