fix(GRO-1368): remove unused getDb import from consent.ts

getDb was imported but never used — db is passed as a parameter to
handleConsentKeyword. This was the primary TypeScript/lint error
flagged by QA.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-20 15:07:20 +00:00
committed by The Dogfather [agent]
parent 1fbe670751
commit 7d3adeae98
+1 -1
View File
@@ -1,4 +1,4 @@
import { getDb, clients, messageConsentEvents, eq } from "@groombook/db";
import { clients, messageConsentEvents, eq } from "@groombook/db";
import type { Db } from "@groombook/db";
export type KeywordKind = "opt_in" | "opt_out" | "help";