There was an error while loading. Please reload this page.
1 parent 0472633 commit b0fd381Copy full SHA for b0fd381
1 file changed
src/screens/home/admin/RolesView.tsx
@@ -23,6 +23,7 @@ import {
23
IconTrash,
24
} from '@tabler/icons-react';
25
import { useContext, useState } from 'react';
26
+import { RoleAddModal } from '@luna/modals/RoleAddModal';
27
28
export function RolesView() {
29
const auth = useContext(AuthContext);
@@ -75,6 +76,7 @@ export function RolesView() {
75
76
</div>
77
}
78
>
79
+ <RoleAddModal isOpen={showRoleAddModal} setOpen={setShowRoleAddModal} />
80
<Table
81
aria-label="Table of roles for administrators"
82
removeWrapper
0 commit comments