RootCauseunvalidated
pizzas length is empty — The `pizzas` state is initially empty and is also set to `[]` when the `fetchPizzas` action is pending. Tension: if (!loading && (!pizzas || pizzas?.length === 0)). Outcome: Using `undefined` or `null` are valid choices here to indicate that data hasn't been fetched/loaded yet.
44036c6d-7544-4287-9f3e-f6077e9884c1
pizzas length is empty — The pizzas state is initially empty and is also set to [] when the fetchPizzas action is pending. Tension: if (!loading && (!pizzas || pizzas?.length === 0)). Outcome: Using undefined or null are valid choices here to indicate that data hasn't been fetched/loaded yet.