Fixed sheet search

This commit is contained in:
Roman Krček
2025-08-06 13:47:37 +02:00
parent d8b4eea3ef
commit e9987009c7
2 changed files with 8 additions and 8 deletions

View File

@@ -90,7 +90,7 @@ export const pictures = writable<Record<string, PictureBlobInfoType>>({});
export const CropRects = writable<Record<string, CropType>>({});
// Store and hold the selected sheet
export const selectedSheet = writable<SheetInfoType | null>(null);
export const selectedSheet = writable<SheetInfoType>({ id: '', name: '', webViewLink: '' });
// Card details for generation
export const cardDetails = writable<CardDetailsType | null>(null);