diff --git a/frontend-modern/src/components/Dashboard/IOMetric.tsx b/frontend-modern/src/components/Dashboard/IOMetric.tsx index c632ec0..68873e1 100644 --- a/frontend-modern/src/components/Dashboard/IOMetric.tsx +++ b/frontend-modern/src/components/Dashboard/IOMetric.tsx @@ -1,6 +1,5 @@ import { createMemo, Show, createEffect, createSignal } from 'solid-js'; import { formatSpeed } from '@/utils/format'; -import { AnimatedMetric } from '@/components/shared/AnimatedMetric'; interface IOMetricProps { value: (() => number) | number; @@ -42,7 +41,7 @@ export function IOMetric(props: IOMetricProps) { fallback={
-
} >
- formatSpeed(v, 0)} /> + {formatSpeed(currentValue(), 0)}
);