File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
pages/DeploymentSettingsPage/GeneralSettingsPage Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change
1
+ import type { DeploymentConfig } from "api/api" ;
1
2
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" ;
7
4
import { Loader } from "components/Loader/Loader" ;
8
5
import { Margins } from "components/Margins/Margins" ;
9
6
import { Stack } from "components/Stack/Stack" ;
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ import type { FC } from "react";
7
7
import { Helmet } from "react-helmet-async" ;
8
8
import { useQuery } from "react-query" ;
9
9
import { pageTitle } from "utils/page" ;
10
- import { useDeploySettings } from "../DeploySettingsLayout " ;
10
+ import { useManagementSettings } from "modules/management/ManagementSettingsLayout " ;
11
11
import { GeneralSettingsPageView } from "./GeneralSettingsPageView" ;
12
12
13
13
const GeneralSettingsPage : FC = ( ) => {
14
- const { deploymentValues } = useDeploySettings ( ) ;
14
+ const { deploymentValues } = useManagementSettings ( ) ;
15
15
const deploymentDAUsQuery = useQuery ( deploymentDAUs ( ) ) ;
16
16
const safeExperimentsQuery = useQuery ( availableExperiments ( ) ) ;
17
17
You can’t perform that action at this time.
0 commit comments