diff --git a/client/src/app/pages/archetypes/archetypes-page.tsx b/client/src/app/pages/archetypes/archetypes-page.tsx
index 7fc75fe3c1..b598df804e 100644
--- a/client/src/app/pages/archetypes/archetypes-page.tsx
+++ b/client/src/app/pages/archetypes/archetypes-page.tsx
@@ -55,6 +55,7 @@ import { ConfirmDialog } from "@app/components/ConfirmDialog";
import { formatPath, getAxiosErrorMessage } from "@app/utils/utils";
import { AxiosError } from "axios";
import { Paths } from "@app/Paths";
+import { SimplePagination } from "@app/components/SimplePagination";
const Archetypes: React.FC = () => {
const { t } = useTranslation();
@@ -130,7 +131,7 @@ const Archetypes: React.FC = () => {
}),
initialSort: { columnKey: "name", direction: "asc" },
- hasPagination: false, // TODO: Add pagination
+ hasPagination: true,
});
const {
currentPageItems,
@@ -219,7 +220,13 @@ const Archetypes: React.FC = () => {
- {/* TODO: Add pagination */}
+
+
+
@@ -315,8 +322,11 @@ const Archetypes: React.FC = () => {
))}
-
- {/* TODO: Add pagination */}
+