Skip to content

Commit c11e997

Browse files
fix: console errors
1 parent 49e1d99 commit c11e997

File tree

1 file changed

+1
-1
lines changed
  • assets/src/dashboard/parts/connected/dashboard

1 file changed

+1
-1
lines changed

assets/src/dashboard/parts/connected/dashboard/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ const Dashboard = () => {
156156
};
157157

158158
const formatMetricValue = metric => {
159-
const value = getMetricValue( metric );
159+
const value = getFormattedMetric( metric );
160160
const calcValue = 'saved_size' === metric ? ( value / 1000 ).toFixed( 2 ) : value.toFixed( 2 );
161161
return (
162162
<div className='flex items-end gap-1'>

0 commit comments

Comments
 (0)