fix and update

This commit is contained in:
lendry
2026-06-29 12:17:25 +03:00
parent 923a028cdd
commit 75ccbe5fc4
39 changed files with 1619 additions and 63 deletions

View File

@@ -6,7 +6,7 @@ import { cn } from '@/lib/utils';
interface ChatMediaAlbumGridProps {
messages: ChatMessage[];
mediaUrls: Record<string, { blobUrl: string } | undefined>;
mediaUrls: Record<string, { blobUrl?: string } | undefined>;
className?: string;
onImageClick?: (message: ChatMessage, index: number) => void;
}