remove console.logs

This commit is contained in:
Torben Haack 2024-11-22 11:22:57 +01:00
parent 4a9131a562
commit fcb6d135ee
No known key found for this signature in database
2 changed files with 0 additions and 3 deletions

View File

@ -91,7 +91,6 @@ export async function GET(request: Request): Promise<Response> {
},
});
} catch (e) {
console.log(e);
// the specific error message depends on the provider
if (e instanceof OAuth2RequestError) {
// invalid code

View File

@ -20,8 +20,6 @@ export function Countdown(props: CountdownProps) {
return <>...</>;
}
console.log(data);
const days = Math.floor(data.remainingTime / (1000 * 60 * 60 * 24));
const hours = Math.floor((data.remainingTime % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((data.remainingTime % (1000 * 60 * 60)) / (1000 * 60));