diff --git a/src/table.tsx b/src/table.tsx index adfa86d..292bdbf 100644 --- a/src/table.tsx +++ b/src/table.tsx @@ -561,7 +561,7 @@ export function printTables[]>( tables: {[P in keyof T]: TableOptions}, options?: Omit, ): void { - if (tables.reduce((acc, table) => acc + table.data.length, 0) > 50_000) { + if (tables.reduce((acc, table) => acc + table.data.length, 0) > 30_000) { throw new Error('The data is too large to print multiple tables. Please use `printTable` instead.') }