diff --git a/handlers/nprofile.ts b/handlers/nprofile.ts index 6b1adb1..e84e03f 100644 --- a/handlers/nprofile.ts +++ b/handlers/nprofile.ts @@ -9,7 +9,6 @@ const nprofileHandler = async function (ctx: Context) { try { data = nip19.decode(nprofile).data as nip19.ProfilePointer; - console.log(data); } catch (_e) { notFoundHandler(ctx); return; diff --git a/server.ts b/server.ts index ee7a02a..068437f 100644 --- a/server.ts +++ b/server.ts @@ -85,7 +85,6 @@ router.get("/:username/:identifier", async (ctx) => { }); router.get("/assets/:path*", async (ctx) => { - console.log(import.meta.dirname); try { let filePath = ctx.params.path || ""; let root: string;