diff --git a/apps/web/src/components/paginated.tsx b/apps/web/src/components/paginated.tsx index 89ed5af8..a54d4f95 100644 --- a/apps/web/src/components/paginated.tsx +++ b/apps/web/src/components/paginated.tsx @@ -7,6 +7,7 @@ import { Stack, StackProps, Text, + VisuallyHidden, } from "@mantine/core"; import { useScrollIntoView } from "@mantine/hooks"; import { pathOr } from "ramda"; @@ -88,6 +89,9 @@ const Paginated: FC = (props) => { value={activePage} total={totalPages} onChange={onChangeTopPagination} + getControlProps={(control) => ({ + "aria-label": control, + })} /> {children} @@ -96,7 +100,12 @@ const Paginated: FC = (props) => { Show: