Skip to content

Commit d7f5bac

Browse files
committed
🧹
1 parent 6aed20c commit d7f5bac

File tree

6 files changed

+2
-17
lines changed

6 files changed

+2
-17
lines changed

site/src/components/DropdownMenu/DropdownMenu.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@
77
*/
88

99
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
10-
import { Button } from "components/Button/Button";
11-
import { Check, ChevronDownIcon, ChevronRight, Circle } from "lucide-react";
10+
import { Check, ChevronRight, Circle } from "lucide-react";
1211
import {
1312
type ComponentPropsWithoutRef,
1413
type ElementRef,
15-
type FC,
1614
type HTMLAttributes,
1715
forwardRef,
1816
} from "react";

site/src/components/ErrorBoundary/GlobalErrorBoundary.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
/**
2-
* @file A global error boundary designed to work with React Router.
3-
*
4-
* This is not documented well, but because of React Router works, it will
5-
* automatically intercept any render errors produced in routes, and will
6-
* "swallow" them, preventing the errors from bubbling up to any error
7-
* boundaries above the router. The global error boundary must be explicitly
8-
* bound to a route to work as expected.
9-
*/
10-
import type { Interpolation } from "@emotion/react";
111
import Link from "@mui/material/Link";
122
import { Button } from "components/Button/Button";
133
import { CoderIcon } from "components/Icons/CoderIcon";

site/src/modules/dashboard/Navbar/MobileMenu.stories.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type { Meta, StoryObj } from "@storybook/react";
22
import { fn, userEvent, within } from "@storybook/test";
33
import { PointerEventsCheckLevel } from "@testing-library/user-event";
44
import type { FC } from "react";
5-
import { chromaticWithTablet } from "testHelpers/chromatic";
65
import {
76
MockPrimaryWorkspaceProxy,
87
MockProxyLatencies,

site/src/modules/dashboard/Navbar/NavbarView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type * as TypesGen from "api/typesGenerated";
22
import { ExternalImage } from "components/ExternalImage/ExternalImage";
33
import { CoderIcon } from "components/Icons/CoderIcon";
44
import type { ProxyContextValue } from "contexts/ProxyContext";
5-
import { NavLink, useLocation } from "react-router";
65
import type { FC } from "react";
6+
import { NavLink, useLocation } from "react-router";
77
import { cn } from "utils/cn";
88
import { DeploymentDropdown } from "./DeploymentDropdown";
99
import { MobileMenu } from "./MobileMenu";

site/src/pages/UserSettingsPage/ExternalAuthPage/ExternalAuthPageView.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import type {
2121
} from "api/typesGenerated";
2222
import { ErrorAlert } from "components/Alert/ErrorAlert";
2323
import { Avatar } from "components/Avatar/Avatar";
24-
import { AvatarData } from "components/Avatar/AvatarData";
2524
import { Loader } from "components/Loader/Loader";
2625
import {
2726
MoreMenu,

site/src/pages/UserSettingsPage/OAuth2ProviderPage/OAuth2ProviderPageView.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import TableRow from "@mui/material/TableRow";
88
import type * as TypesGen from "api/typesGenerated";
99
import { ErrorAlert } from "components/Alert/ErrorAlert";
1010
import { Avatar } from "components/Avatar/Avatar";
11-
import { AvatarData } from "components/Avatar/AvatarData";
1211
import { Stack } from "components/Stack/Stack";
1312
import { TableLoader } from "components/TableLoader/TableLoader";
1413
import type { FC } from "react";

0 commit comments

Comments
 (0)