From ebe2369c1f579472377985ef1d592f6502dc0118 Mon Sep 17 00:00:00 2001 From: Mary Date: Wed, 20 Dec 2023 07:31:40 +0700 Subject: [PATCH] chore: remove log --- app/api/stores/posts.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/api/stores/posts.ts b/app/api/stores/posts.ts index cd8a9927..7a882774 100644 --- a/app/api/stores/posts.ts +++ b/app/api/stores/posts.ts @@ -14,7 +14,6 @@ const gc = new FinalizationRegistry((id) => { const ref = posts[id]; if (!ref || !ref.deref()) { - console.log(`removing post ${id}`); delete posts[id]; } });