Problemunvalidated
TypeScript still thinks `data` may still be undefined — In `fetchOrgs`, I'm already providing a fallback for `items` like so: `items: response.data ?? []`. Tension: I have to provide a fallback again. Outcome: How can I avoid defining the fallback twice (they are actually many)?
3ac9f591-aeac-4652-8995-c9bec05e5b03
TypeScript still thinks data may still be undefined — In fetchOrgs, I'm already providing a fallback for items like so:
items: response.data ?? []. Tension: I have to provide a fallback again. Outcome: How can I avoid defining the fallback twice (they are actually many)?