From bf4a56e550d10dbeb589bfec07b09b4b9ed0715e Mon Sep 17 00:00:00 2001 From: "Khoa.vo" Date: Wed, 7 Jan 2026 19:26:50 +0700 Subject: [PATCH] fix: Remove grok from provider type union --- lib/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db.ts b/lib/db.ts index 46582ec..b35644e 100644 --- a/lib/db.ts +++ b/lib/db.ts @@ -6,7 +6,7 @@ export interface ImageItem { prompt: string; aspectRatio: string; createdAt: number; - provider?: 'whisk' | 'grok' | 'meta'; // Track which AI generated the image + provider?: 'whisk' | 'meta'; // Track which AI generated the image } export class KeyValuePixDB extends Dexie {