Error: TypeError: Cannot read properties of undefined (reading 'length')

You can get an error like that when you expect a payload to contain a property such as payload.box.length but for some reason payload.box does not exist.

This happens a lot with API calls when you receive an error message instead of the expected json.

1 Like