diff --git a/src/layouts/DefaultLayout/index.tsx b/src/layouts/DefaultLayout/index.tsx index 7646305..c03b641 100644 --- a/src/layouts/DefaultLayout/index.tsx +++ b/src/layouts/DefaultLayout/index.tsx @@ -19,7 +19,6 @@ export function DefaultLayout() { if (snapshot.exists()) { const data = snapshot.val() if (data && isAuth) { - console.log(data) setCurrentBalance(data.currentBalance) return } diff --git a/src/pages/Games/Plinko/index.tsx b/src/pages/Games/Plinko/index.tsx index 3b4df32..fc419ff 100644 --- a/src/pages/Games/Plinko/index.tsx +++ b/src/pages/Games/Plinko/index.tsx @@ -5,7 +5,6 @@ import { Game } from './components/Game' export function PlinkoGamePage() { const alertUser = (e: BeforeUnloadEvent) => { - console.log('gamesRunning', gamesRunning) if (gamesRunning > 0) { e.preventDefault() alert('Tu quer mermo sair feladaputa?') diff --git a/src/store/auth.ts b/src/store/auth.ts index 74d7be1..01e9928 100644 --- a/src/store/auth.ts +++ b/src/store/auth.ts @@ -63,7 +63,6 @@ export const useAuthStore = create((setState, getState) => ({ isAuth: false, setBalance: (balance: number) => { try { - console.log('setando estado', balance) setState( produce(state => { state.wallet.balance = balance