@tanstack/svelte-table 8.0.0-alpha.79 → 8.0.0-alpha.80

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.
@@ -299,7 +299,7 @@ const Rows = {
299
299
  const column = instance.getColumn(columnId);
300
300
 
301
301
  if (!column.accessorFn) {
302
- throw new Error();
302
+ return undefined;
303
303
  }
304
304
 
305
305
  row.valuesCache[columnId] = column.accessorFn(row.original, rowIndex);