diff --git a/src/front/Components/Layouts/Roles/RolesInformations/index.tsx b/src/front/Components/Layouts/Roles/RolesInformations/index.tsx index 5da3eda9..bc9eb994 100644 --- a/src/front/Components/Layouts/Roles/RolesInformations/index.tsx +++ b/src/front/Components/Layouts/Roles/RolesInformations/index.tsx @@ -45,7 +45,11 @@ export default function RolesInformations(props: IProps) { }, }); - const rules = await Rules.getInstance().get({}); + const rules = await Rules.getInstance().get({ + where: { + namespace: "notary", + }, + }); if (!role) return; setRoleSelected(role); if (!role.rules) return;