diff --git a/app/results/[id]/page.tsx b/app/results/[id]/page.tsx index 0920b07..25f403e 100644 --- a/app/results/[id]/page.tsx +++ b/app/results/[id]/page.tsx @@ -24,7 +24,7 @@ export default function Page({ params }: { params: { id: string } }) { useEffect(() => { featchResults(testId); - setTimeout(() => { + setInterval(() => { featchResults(testId); }, 5000); }, [testId]);