Skip to content

Commit 05d1e80

Browse files
committed
oh
1 parent bf9ab32 commit 05d1e80

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

site/src/modules/management/ManagementSettingsLayout.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1+
import type { DeploymentConfig } from "api/api";
12
import { deploymentConfig } from "api/queries/deployment";
2-
import type {
3-
AuthorizationResponse,
4-
DeploymentConfig,
5-
Organization,
6-
} from "api/typesGenerated";
3+
import type { AuthorizationResponse, Organization } from "api/typesGenerated";
74
import { Loader } from "components/Loader/Loader";
85
import { Margins } from "components/Margins/Margins";
96
import { Stack } from "components/Stack/Stack";

site/src/pages/DeploymentSettingsPage/GeneralSettingsPage/GeneralSettingsPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import type { FC } from "react";
77
import { Helmet } from "react-helmet-async";
88
import { useQuery } from "react-query";
99
import { pageTitle } from "utils/page";
10-
import { useDeploySettings } from "../DeploySettingsLayout";
10+
import { useManagementSettings } from "modules/management/ManagementSettingsLayout";
1111
import { GeneralSettingsPageView } from "./GeneralSettingsPageView";
1212

1313
const GeneralSettingsPage: FC = () => {
14-
const { deploymentValues } = useDeploySettings();
14+
const { deploymentValues } = useManagementSettings();
1515
const deploymentDAUsQuery = useQuery(deploymentDAUs());
1616
const safeExperimentsQuery = useQuery(availableExperiments());
1717

0 commit comments

Comments
 (0)