diff --git a/packages/app/src/components/advancedSettings/AdvancedSettings.jsx b/packages/app/src/components/advancedSettings/AdvancedSettings.jsx deleted file mode 100644 index 469f9a6035..0000000000 --- a/packages/app/src/components/advancedSettings/AdvancedSettings.jsx +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Copyright 2022 The Backstage Authors - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// @ts-check -// NOTE: This file is intentionally .jsx, so that there is one file in this repo where we make sure .jsx files work. - -import React from 'react'; -import { InfoCard } from '@backstage/core-components'; -import { - List, - Grid, - ListItem, - ListItemText, - ListItemSecondaryAction, - Switch, -} from '@material-ui/core'; -import useLocalStorage from 'react-use/lib/useLocalStorage'; - -export function AdvancedSettings() { - const [value, setValue] = useLocalStorage('advanced-option', 'off'); - - const toggleValue = ( - /** @type {React.ChangeEvent} */ ev, - ) => { - setValue(ev.currentTarget.checked ? 'on' : 'off'); - }; - - return ( - - - - - - - - - - - - - - - ); -}