Fix TypeScript errors after JSONB removal

This commit is contained in:
gpt-engineer-app[bot]
2025-11-03 14:33:34 +00:00
parent c3f30b8417
commit 1a3c5ef671
5 changed files with 72 additions and 60 deletions

View File

@@ -129,7 +129,7 @@ export const EntityEditPreview = ({ submissionId, entityType, entityName }: Enti
// Parse changed fields
const changed: string[] = [];
const data = firstItem.item_data as Record<string, unknown>;
const data = itemDataObj as Record<string, unknown>;
// Check for image changes
if (data.images && typeof data.images === 'object') {