Skip to content

Commit

Permalink
fix: set team list page size to 9 to ensure it fits within the height…
Browse files Browse the repository at this point in the history
… of the page
  • Loading branch information
Tethik committed Nov 26, 2024
1 parent 1259c32 commit daaff8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { SystemComplianceBadge } from "../../elements/SystemComplianceBadge";
import Loading from "../../loading";
import { useGetTeamQuery } from "../../../api/gram/team";

export function TeamSystemsPageList({ teamId, pagesize = 10 }) {
export function TeamSystemsPageList({ teamId, pagesize = 9 }) {
const [page, setPage] = useState(0);

const opts = { filter: "team", teamId, pagesize, page };
Expand Down

0 comments on commit daaff8c

Please sign in to comment.