Firefox throws 'undefined has no properties' when attempting to destructure null or undefined values. This commonly occurs with API responses returning null, missing function arguments, or async data not yet loaded in components. Fix by adding fallback objects using nullish coalescing (??), setting default function parameters,
Sort: