/* ===== data.jsx — empty seed (real data loads from API) ===== */
(function () {
  // No mock data. The store loads everything from the Cloudflare Worker API.
  // If anything renders a hardcoded name/number, it's a bug — fix that page.
  window.SEED = {
    users: [],
    suppliers: [],
    customers: [],
    reagent_products: [],
    reagent_batches: [],
    reagent_outflows: [],
    device_products: [],
    device_units: [],
    device_transfers: [],
    activity: [],
  };
})();
