diff --git a/packages/canon/src/components/DataTable/Pagination/DataTablePagination.tsx b/packages/canon/src/components/DataTable/Pagination/DataTablePagination.tsx
index 2efa73bf14..452e0c34fd 100644
--- a/packages/canon/src/components/DataTable/Pagination/DataTablePagination.tsx
+++ b/packages/canon/src/components/DataTable/Pagination/DataTablePagination.tsx
@@ -75,14 +75,14 @@ const DataTablePagination = forwardRef(
variant="secondary"
size="small"
onClick={() => table?.previousPage()}
- disabled={!table?.getCanPreviousPage()}
+ isDisabled={!table?.getCanPreviousPage()}
icon={}
/>
table?.nextPage()}
- disabled={!table?.getCanNextPage()}
+ isDisabled={!table?.getCanNextPage()}
icon={}
/>