diff --git a/flutter/lib/features/inventory/presentation/create_inventory_screen.dart b/flutter/lib/features/inventory/presentation/create_inventory_screen.dart index ed4fd475..dbbd0446 100644 --- a/flutter/lib/features/inventory/presentation/create_inventory_screen.dart +++ b/flutter/lib/features/inventory/presentation/create_inventory_screen.dart @@ -159,6 +159,7 @@ class _CreateInventoryScreenState (p) => ( id: (p['id'] as num).toInt(), name: (p['canonicalName'] ?? p['name'] ?? '').toString(), + categoryId: (p['categoryId'] as num?)?.toInt(), ), ) .toList();