@tanstack/react-table 8.5.16 → 8.5.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -115,6 +115,9 @@ function createColumn(table, columnDef, depth, parent) {
115
115
  let result = originalRow;
116
116
  for (const key of accessorKey.split('.')) {
117
117
  result = result[key];
118
+ if (process.env.NODE_ENV !== 'production' && result === undefined) {
119
+ throw new Error(`"${key}" in deeply nested key "${accessorKey}" returned undefined.`);
120
+ }
118
121
  }
119
122
  return result;
120
123
  };