Skip to content

Commit 71ab83c

Browse files
committed
fix: use addIcon to create roles
1 parent 0d32515 commit 71ab83c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/pages/ManagementSettingsPage/CustomRolesPage/CustomRolesPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import GroupAdd from "@mui/icons-material/GroupAddOutlined";
1+
import AddIcon from "@mui/icons-material/AddOutlined";
22
import Button from "@mui/material/Button";
33
import { type FC, useEffect } from "react";
44
import { Helmet } from "react-helmet-async";
@@ -47,7 +47,7 @@ export const CustomRolesPage: FC = () => {
4747
{canAssignOrgRole && isCustomRolesEnabled && (
4848
<Button
4949
component={RouterLink}
50-
startIcon={<GroupAdd />}
50+
startIcon={<AddIcon />}
5151
to="create"
5252
>
5353
Create custom role

0 commit comments

Comments
 (0)