Skip to content

Commit

Permalink
removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
dubwub committed Jan 23, 2025
1 parent 794197b commit a5bffd5
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@ export async function loadDocsDefinitionFromS3({
keyPairId: process.env.CLOUDFRONT_KEY_GROUP_ID || "",
dateLessThan: new Date(Date.now() + 1000 * 60 * 60 * 24 * 30).toString(),
});
console.log("signedUrl", signedUrl);
const response = await fetch(dbDocsDefUrl);
console.log("response", response.ok);
console.log("response.status", response.status);
if (response.ok) {
const json = await response.json();
return json as FdrAPI.docs.v2.read.LoadDocsForUrlResponse;
Expand Down

0 comments on commit a5bffd5

Please sign in to comment.