Skip to content

Commit 3b2ea7e

Browse files
committed
Fix icons
1 parent 9dfa105 commit 3b2ea7e

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

site/src/pages/HealthPage/DERPRegionPage.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ import type {
88
HealthcheckReport,
99
} from "api/typesGenerated";
1010
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";
1412
import type { FC } from "react";
1513
import { Helmet } from "react-helmet-async";
1614
import { Link, useOutletContext, useParams } from "react-router-dom";
@@ -92,7 +90,7 @@ const DERPRegionPage: FC = () => {
9290
<section>
9391
<div css={{ display: "flex", flexWrap: "wrap", gap: 12 }}>
9492
<Tooltip title="Region ID">
95-
<Pill icon={<TagIcon className="size-icon-sm" />}>
93+
<Pill icon={<HashIcon className="size-icon-sm" />}>
9694
{region!.RegionID}
9795
</Pill>
9896
</Tooltip>

site/src/pages/HealthPage/WorkspaceProxyPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PublicOutlined from "@mui/icons-material/PublicOutlined";
33
import Tooltip from "@mui/material/Tooltip";
44
import type { HealthcheckReport } from "api/typesGenerated";
55
import { Alert } from "components/Alert/Alert";
6-
import { TagIcon } from "lucide-react";
6+
import { HashIcon } from "lucide-react";
77
import type { FC } from "react";
88
import { Helmet } from "react-helmet-async";
99
import { useOutletContext } from "react-router-dom";
@@ -118,7 +118,7 @@ const WorkspaceProxyPage: FC = () => {
118118
)}
119119
{region.version && (
120120
<Tooltip title="Version">
121-
<Pill icon={<TagIcon className="size-icon-sm" />}>
121+
<Pill icon={<HashIcon className="size-icon-sm" />}>
122122
{region.version}
123123
</Pill>
124124
</Tooltip>

site/src/pages/OrganizationSettingsPage/UserTable/EditRolesButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export const EditRolesButton: FC<EditRolesButtonProps> = ({
175175
</fieldset>
176176
<div className="p-6 border-t-1 border-solid border-border text-sm">
177177
<div className="flex gap-4">
178-
<UserIcon className="size-icon-sm" />
178+
<UserIcon />
179179
<div className="flex flex-col">
180180
<strong>Member</strong>
181181
<span className="text-xs text-content-secondary">

0 commit comments

Comments
 (0)