Clean up old console.log statements

This commit is contained in:
Jesse Wierzbinski 2024-04-13 19:27:19 -10:00
parent 354493133c
commit 3cdd685035
No known key found for this signature in database
2 changed files with 0 additions and 4 deletions

View file

@ -14,8 +14,6 @@ export const useConfig = async () => {
host = useRequestURL().origin.toString();
}
console.log(host);
if (!host) {
throw createError({
statusCode: 500,

View file

@ -60,8 +60,6 @@ describe("POST /api/auth/login/", () => {
test("should get a code", async () => {
const formData = new FormData();
console.log(users[0]?.email ?? "");
formData.append("email", users[0]?.email ?? "");
formData.append("password", passwords[0]);