Skip to content

Commit

Permalink
feat(removing console logs): 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
kayooliveira committed Sep 16, 2022
1 parent 06ea7ba commit 348aa92
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/layouts/DefaultLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export function DefaultLayout() {
if (snapshot.exists()) {
const data = snapshot.val()
if (data && isAuth) {
console.log(data)
setCurrentBalance(data.currentBalance)
return
}
Expand Down
1 change: 0 additions & 1 deletion src/pages/Games/Plinko/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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?')
Expand Down
1 change: 0 additions & 1 deletion src/store/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ export const useAuthStore = create<State>((setState, getState) => ({
isAuth: false,
setBalance: (balance: number) => {
try {
console.log('setando estado', balance)
setState(
produce<State>(state => {
state.wallet.balance = balance
Expand Down

1 comment on commit 348aa92

@vercel
Copy link

@vercel vercel bot commented on 348aa92 Sep 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.