Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Qi Liu committed Nov 19, 2024
1 parent b93bfe5 commit 915bf17
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useRef, useMemo, useContext } from 'react';
import React, { useRef, useMemo } from 'react';
import Platform from '../GeneralSettings/Platform';
import SlotAutoSwap from '../GeneralSettings/SlotAutoSwap';
import Stacks from '../GeneralSettings/Stacks';
Expand All @@ -14,12 +14,10 @@ import { isEqual } from 'lodash-es';
import ClientCert from '../GeneralSettings/ClientCert/ClientCert';
import { DeploymentCenterConstants } from '../../deployment-center/DeploymentCenterConstants';
import StringUtils from '../../../../utils/string';
import { SiteStateContext } from '../../../../SiteState';

const GeneralSettings: React.FC<FormikProps<AppSettingsFormValues>> = props => {
const { values } = props;
const { site } = values;
const siteStateContext = useContext(SiteStateContext);
const { t } = useTranslation();
const scenarioCheckerRef = useRef(new ScenarioService(t));
const scenarioChecker = scenarioCheckerRef.current!;
Expand Down

0 comments on commit 915bf17

Please sign in to comment.