From c2b13b1a63ce6b8042e5764cd15c0a5a5b5a6258 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Thu, 11 Jul 2024 17:22:03 -0500 Subject: [PATCH] Add a ts-ignore instead of as any --- src/db/adapters/DittoPostgres.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/db/adapters/DittoPostgres.ts b/src/db/adapters/DittoPostgres.ts index ac33a8c3..4160562b 100644 --- a/src/db/adapters/DittoPostgres.ts +++ b/src/db/adapters/DittoPostgres.ts @@ -19,6 +19,7 @@ export class DittoPostgres { if (!this.db) { this.db = new Kysely({ dialect: new PostgresJSDialect({ + // @ts-ignore: mismatched library versions postgres: this.postgres, }), log: KyselyLogger,