import { useState } from 'react'; export default function SimpleTest() { const [count, setCount] = useState(0); return (
This is a simple React component to test if the infinite refresh is caused by the API calls.
If this component works without refreshing, the issue is in the TaskManager API calls.