refactor(FE): Make feed and doc supplier arrays nullable

This commit is contained in:
rstubryan
2026-01-15 17:53:18 +07:00
parent 7d3a4c1ecc
commit 0a24c4541f
+2 -2
View File
@@ -14,8 +14,8 @@ export type HppPerKandangRow = {
egg_production_kg: number;
egg_hpp_rp_per_kg: number;
egg_value_rp: number;
feed_suppliers: Supplier[];
doc_suppliers: Supplier[];
feed_suppliers: Supplier[] | null;
doc_suppliers: Supplier[] | null;
average_doc_price_rp: number;
};