File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
OrganizationSettingsPage/UserTable Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,7 @@ import type {
8
8
HealthcheckReport ,
9
9
} from "api/typesGenerated" ;
10
10
import { Alert } from "components/Alert/Alert" ;
11
- import { TagIcon } from "lucide-react" ;
12
- import { ChevronLeftIcon } from "lucide-react" ;
13
- import { CodeIcon } from "lucide-react" ;
11
+ import { ChevronLeftIcon , CodeIcon , HashIcon } from "lucide-react" ;
14
12
import type { FC } from "react" ;
15
13
import { Helmet } from "react-helmet-async" ;
16
14
import { Link , useOutletContext , useParams } from "react-router-dom" ;
@@ -92,7 +90,7 @@ const DERPRegionPage: FC = () => {
92
90
< section >
93
91
< div css = { { display : "flex" , flexWrap : "wrap" , gap : 12 } } >
94
92
< Tooltip title = "Region ID" >
95
- < Pill icon = { < TagIcon className = "size-icon-sm" /> } >
93
+ < Pill icon = { < HashIcon className = "size-icon-sm" /> } >
96
94
{ region ! . RegionID }
97
95
</ Pill >
98
96
</ Tooltip >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import PublicOutlined from "@mui/icons-material/PublicOutlined";
3
3
import Tooltip from "@mui/material/Tooltip" ;
4
4
import type { HealthcheckReport } from "api/typesGenerated" ;
5
5
import { Alert } from "components/Alert/Alert" ;
6
- import { TagIcon } from "lucide-react" ;
6
+ import { HashIcon } from "lucide-react" ;
7
7
import type { FC } from "react" ;
8
8
import { Helmet } from "react-helmet-async" ;
9
9
import { useOutletContext } from "react-router-dom" ;
@@ -118,7 +118,7 @@ const WorkspaceProxyPage: FC = () => {
118
118
) }
119
119
{ region . version && (
120
120
< Tooltip title = "Version" >
121
- < Pill icon = { < TagIcon className = "size-icon-sm" /> } >
121
+ < Pill icon = { < HashIcon className = "size-icon-sm" /> } >
122
122
{ region . version }
123
123
</ Pill >
124
124
</ Tooltip >
Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ export const EditRolesButton: FC<EditRolesButtonProps> = ({
175
175
</ fieldset >
176
176
< div className = "p-6 border-t-1 border-solid border-border text-sm" >
177
177
< div className = "flex gap-4" >
178
- < UserIcon className = "size-icon-sm" />
178
+ < UserIcon />
179
179
< div className = "flex flex-col" >
180
180
< strong > Member</ strong >
181
181
< span className = "text-xs text-content-secondary" >
You can’t perform that action at this time.
0 commit comments