fix: Remove grok from provider type union
Some checks are pending
CI / build (18.x) (push) Waiting to run
CI / build (20.x) (push) Waiting to run

This commit is contained in:
Khoa.vo 2026-01-07 19:26:50 +07:00
parent 2173eb1446
commit bf4a56e550

View file

@ -6,7 +6,7 @@ export interface ImageItem {
prompt: string; prompt: string;
aspectRatio: string; aspectRatio: string;
createdAt: number; 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 { export class KeyValuePixDB extends Dexie {