From 010d96c3cd6e104e23330656667dcc1a281aca36 Mon Sep 17 00:00:00 2001 From: Jake Howell Date: Tue, 14 Jul 2026 03:41:39 +1000 Subject: [PATCH] chore: remove `useTheme` from `` (#27198) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This wasn't used, removing 🙂 --- .../OAuth2AppsSettingsPage/OAuth2AppsSettingsPageView.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/site/src/pages/DeploymentSettingsPage/OAuth2AppsSettingsPage/OAuth2AppsSettingsPageView.tsx b/site/src/pages/DeploymentSettingsPage/OAuth2AppsSettingsPage/OAuth2AppsSettingsPageView.tsx index 2bc4fc9041..0a6c28ecc5 100644 --- a/site/src/pages/DeploymentSettingsPage/OAuth2AppsSettingsPage/OAuth2AppsSettingsPageView.tsx +++ b/site/src/pages/DeploymentSettingsPage/OAuth2AppsSettingsPage/OAuth2AppsSettingsPageView.tsx @@ -1,4 +1,3 @@ -import { useTheme } from "@emotion/react"; import { ChevronRightIcon, PlusIcon } from "lucide-react"; import type { FC } from "react"; import { Link, useNavigate } from "react-router"; @@ -92,7 +91,6 @@ type OAuth2AppRowProps = { }; const OAuth2AppRow: FC = ({ app }) => { - const _theme = useTheme(); const navigate = useNavigate(); const clickableProps = useClickableTableRow({ onClick: () => navigate(`/deployment/oauth2-provider/apps/${app.id}`),