import { Fragment } from 'react' import styled from 'styled-components/macro' import map from 'lodash/map' import type { ENVType } from 'config/env' import { APIS } from 'config/routes' import { RadioGroup, RadioButton } from '../RadioButtons' import { SettingsDescription } from '../../styled' const Details = styled.span` margin-top: 4px; font-size: 10px; text-transform: initial; ` const getHost = (url: string) => new URL(url).host type Option = { details: string, key: ENVType, label: string, } const options: Array