@tanstack/table-core 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.
@@ -109,6 +109,9 @@
109
109
  let result = originalRow;
110
110
  for (const key of accessorKey.split('.')) {
111
111
  result = result[key];
112
+ if (result === undefined) {
113
+ throw new Error(`"${key}" in deeply nested key "${accessorKey}" returned undefined.`);
114
+ }
112
115
  }
113
116
  return result;
114
117
  };