MCPcopy Create free account
hub / github.com/Roy3838/Observer / fetchCount

Function fetchCount

app/src/hooks/useIterations.ts:194–200  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

192
193 useEffect(() => {
194 const fetchCount = () => {
195 const iterations = IterationStore.getIterationsForAgent(agentId);
196 if (iterations.length !== lastCountRef.current) {
197 lastCountRef.current = iterations.length;
198 setCount(iterations.length);
199 }
200 };
201
202 fetchCount();
203 const interval = setInterval(fetchCount, pollInterval);

Callers 1

useIterationCountFunction · 0.85

Calls 1

getIterationsForAgentMethod · 0.80

Tested by

no test coverage detected