Remove Page Select For Large Data Table

I have a Data Table being displayed in my dash app. Because of its size, dash breaks it up into two pages with the menu below, its unfortunate for me though because the second page only has one row, so it looks really weird. Is there any way to remove this menu and just have the entire data table displayed without the page select?


Thanks in advance!

updated answer
If the data has more than 250 rows, then pagination is automatically added to the table. You can override the default of 250 rows by setting the page_size property. Note that setting the page size to a very large number may decrease the app performance.