Reputation: 11
I am creating table in reactJS using tanstack table and getting this log everytime:
imageenter image description here
I want to disable this default logging. How can I achieve that? I searched everywhere but not getting any solution.
Upvotes: 1
Views: 381
Reputation: 1168
I think you're looking for the debugAll={false}
prop.
You can check out the component's documentation here.
Upvotes: 0