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