From 73d0a5a9c00577ba65af8f1bd3704717f6ea4cc5 Mon Sep 17 00:00:00 2001 From: Shivaditya Shivganesh Date: Wed, 11 Sep 2024 07:10:57 -0400 Subject: [PATCH] fix: module import error --- src/handlers/add-comments.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/handlers/add-comments.ts b/src/handlers/add-comments.ts index 52ed0a5..d082ddf 100644 --- a/src/handlers/add-comments.ts +++ b/src/handlers/add-comments.ts @@ -13,7 +13,6 @@ export async function addComments(context: Context) { const nodeId = payload.comment.node_id; const isPrivate = payload.repository.private; - // Add the comment to the database try { await supabase.comment.createComment(plaintext, nodeId, authorId, commentObject, isPrivate); } catch (error) {