remove some logs

This commit is contained in:
Dylan Pizzo
2026-06-11 14:24:07 -04:00
parent daed4245fd
commit f0e522b039
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -20,7 +20,7 @@ const handler = async ({ payload }: FirRouteInput<typeof payloadT>) => {
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<typeof payloadT>) => {
.filter((x) => x.endsWith(".p8.png"))
.map((x) => x.slice(0, -".p8.png".length)),
);
console.log("hi");
}
return {
+2 -2
View File
@@ -17,7 +17,7 @@ const handler = async ({ payload }: FirRouteInput<typeof payloadT>) => {
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<typeof payloadT>) => {
})
).data;
console.log(gameData);
// console.log(gameData);
if (Array.isArray(gameData)) {
return null;