diff --git a/projeto/client/app/api/auth/[...nextauth]/route.ts b/projeto/client/app/api/auth/[...nextauth]/route.ts index 9653958..d050edf 100644 --- a/projeto/client/app/api/auth/[...nextauth]/route.ts +++ b/projeto/client/app/api/auth/[...nextauth]/route.ts @@ -13,13 +13,11 @@ export const authOptions: NextAuthOptions = { password: { label: 'Password', type: 'password' }, }, authorize: async (credentials) => { - console.log('Received credentials:', credentials); try { const response = await axios.post('http://localhost:8000/auth/login', { email: credentials?.email, password: credentials?.password, }); - console.log('Response from API:', response.data); if (response.status === 200 && response.data) { return { diff --git a/projeto/client/app/home/page.tsx b/projeto/client/app/home/page.tsx index df47b23..3a57d90 100644 --- a/projeto/client/app/home/page.tsx +++ b/projeto/client/app/home/page.tsx @@ -77,7 +77,6 @@ export default function HomePage() { const jogoBrData = data[0]; if (jogoBrData.campeonato && jogoBrData.data_hora && jogoBrData.time_1 && jogoBrData.time_2 && jogoBrData.channels) { const JogoBR = new Match(jogoBrData.campeonato, jogoBrData.data_hora, jogoBrData.time_1, jogoBrData.time_2, jogoBrData.channels); - console.log(JogoBR); setJogoBr(JogoBR); } else { console.error('Dados inválidos recebidos da API', jogoBrData); @@ -97,7 +96,6 @@ export default function HomePage() { const jogoLibData = data[0]; if (jogoLibData.campeonato && jogoLibData.data_hora && jogoLibData.time_1 && jogoLibData.time_2 && jogoLibData.channels) { const JogoLib = new Match(jogoLibData.campeonato, jogoLibData.data_hora, jogoLibData.time_1, jogoLibData.time_2, jogoLibData.channels); - console.log(JogoLib); setJogoLib(JogoLib); } else { console.error('Dados inválidos recebidos da API', data); @@ -125,7 +123,7 @@ export default function HomePage() {