diff --git a/src/server/api/getAuthor.ts b/src/server/api/getAuthor.ts index 75251f7..5da1fc1 100644 --- a/src/server/api/getAuthor.ts +++ b/src/server/api/getAuthor.ts @@ -20,7 +20,7 @@ const handler = async ({ payload }: FirRouteInput) => { games: [], }; } - console.log("author", authorData); + // console.log("author", authorData); const pat = decrypt({ password: process.env.ENCRYPTION_PASSWORD!, @@ -47,7 +47,6 @@ const handler = async ({ payload }: FirRouteInput) => { .filter((x) => x.endsWith(".p8.png")) .map((x) => x.slice(0, -".p8.png".length)), ); - console.log("hi"); } return { diff --git a/src/server/api/getGame.ts b/src/server/api/getGame.ts index 3da4791..46a5ea0 100644 --- a/src/server/api/getGame.ts +++ b/src/server/api/getGame.ts @@ -17,7 +17,7 @@ const handler = async ({ payload }: FirRouteInput) => { if (!authorData) { return null; } - console.log("author", authorData); + // console.log("author", authorData); const pat = decrypt({ password: process.env.ENCRYPTION_PASSWORD!, @@ -36,7 +36,7 @@ const handler = async ({ payload }: FirRouteInput) => { }) ).data; - console.log(gameData); + // console.log(gameData); if (Array.isArray(gameData)) { return null;