@@ -100,16 +100,16 @@ const page = () => {
{lotteryStatus === 'not-started' && (
)}
diff --git a/components/lottery/LotteryWinnersSection.tsx b/components/lottery/LotteryWinnersSection.tsx
index b6be0cf..af1ceea 100644
--- a/components/lottery/LotteryWinnersSection.tsx
+++ b/components/lottery/LotteryWinnersSection.tsx
@@ -5,7 +5,7 @@ import SpinWheel from './spinWheel/SpinWheel';
import { useState } from 'react';
const LotteryWinnersSection = () => {
- const [winners, setWinners] = useState
([1, 2, 3, 4, 5, 5, 5, 5]);
+ const [winners, setWinners] = useState([1]);
return (
diff --git a/components/lottery/spinWheel/SpinWheel.tsx b/components/lottery/spinWheel/SpinWheel.tsx
index 61f9a35..dbae6f4 100644
--- a/components/lottery/spinWheel/SpinWheel.tsx
+++ b/components/lottery/spinWheel/SpinWheel.tsx
@@ -119,7 +119,7 @@ const SpinWheel = ({ setWinners }: IProps) => {