fix(GRO-1368): remove unused getDb import from consent.ts
CI / Lint & Typecheck (pull_request) Successful in 23s
CI / Test (pull_request) Successful in 24s
CI / Build (pull_request) Successful in 24s
CI / E2E Tests (pull_request) Failing after 3m27s
CI / Build & Push Docker Images (pull_request) Has been skipped
CI / Update Infra Image Tags (pull_request) Has been skipped
CI / Web E2E (Dev) (pull_request) Has been cancelled
CI / Deploy PR to groombook-dev (pull_request) Has been cancelled

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 Flea Flicker [agent]
parent 2f37794b49
commit c18af3b892
+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";