diff --git a/app/page.tsx b/app/page.tsx index 3ecbf3d..699e58a 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -21,21 +21,6 @@ const generateRandomPoint = () => { return Math.floor(Math.random() * (100 - 10 + 1)) + 10; }; -// Generate pseudo data for rows -const generateTableData = (rows) => { - const data = []; - for (let i = 0; i < rows; i++) { - data.push({ - name: generateRandomName(), - coin: generateRandomCoin(), - point: generateRandomPoint(), - }); - } - return data; -}; - -const tableData = generateTableData(10); - function Home() { const { login, user, ready, logout, linkTwitter, unlinkTwitter, linkWallet, unlinkWallet } = usePrivy(); const [darkMode, setDarkMode] = useState(true); @@ -111,13 +96,13 @@ function Home() { {ready && user ? (
- -