diff --git a/webui/src/features/scheduling/SchedulingPage.tsx b/webui/src/features/scheduling/SchedulingPage.tsx index af19f28..a4e0c98 100644 --- a/webui/src/features/scheduling/SchedulingPage.tsx +++ b/webui/src/features/scheduling/SchedulingPage.tsx @@ -1,3 +1,4 @@ +import { MetricGrid } from "@govoplan/core-webui"; import { useCallback, useEffect, useMemo, useRef, useState, type FormEvent } from "react"; import { useSearchParams } from "react-router"; import { @@ -1702,12 +1703,12 @@ function ParticipationStats({ const rate = responseCount === null ? null : total ? Math.round((knownResponseCount / total) * 100) : 0; return ( -
+ -
+
); }