diff --git a/components/dashboard/src/teams/TeamUsage.tsx b/components/dashboard/src/teams/TeamUsage.tsx index a33c57a5b234e8..59f89c7769061f 100644 --- a/components/dashboard/src/teams/TeamUsage.tsx +++ b/components/dashboard/src/teams/TeamUsage.tsx @@ -32,7 +32,7 @@ function TeamUsage() { const [teamBillingMode, setTeamBillingMode] = useState(undefined); const [billedUsage, setBilledUsage] = useState([]); const [currentPage, setCurrentPage] = useState(1); - const [resultsPerPage] = useState(15); + const [resultsPerPage] = useState(50); const [errorMessage, setErrorMessage] = useState(""); const today = new Date(); const startOfCurrentMonth = new Date(today.getFullYear(), today.getMonth(), 1);