diff --git a/changes/9383-loading-spinner-pagination-bug b/changes/9383-loading-spinner-pagination-bug new file mode 100644 index 0000000000..ba26de5eb0 --- /dev/null +++ b/changes/9383-loading-spinner-pagination-bug @@ -0,0 +1 @@ +* Fix pagination on manage host page \ No newline at end of file diff --git a/frontend/pages/hosts/ManageHostsPage/ManageHostsPage.tsx b/frontend/pages/hosts/ManageHostsPage/ManageHostsPage.tsx index 90fa0c09e4..9f3d400ab6 100644 --- a/frontend/pages/hosts/ManageHostsPage/ManageHostsPage.tsx +++ b/frontend/pages/hosts/ManageHostsPage/ManageHostsPage.tsx @@ -1648,14 +1648,7 @@ const ManageHostsPage = ({ }; const renderTable = () => { - if ( - !config || - !currentUser || - isHostCountLoading || - isHostsLoading || - isLoadingPolicy || - !teamSync - ) { + if (!config || !currentUser || !teamSync) { return ; } @@ -1764,7 +1757,7 @@ const ManageHostsPage = ({