Browse Source

Merge pull request #434 from danditomaso/chore/fix-formatting-issue

chore: format http file
pull/435/head
Dan Ditomaso 1 year ago
committed by GitHub
parent
commit
a6a66a7672
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      src/components/PageComponents/Connect/HTTP.tsx

6
src/components/PageComponents/Connect/HTTP.tsx

@ -28,7 +28,6 @@ export const HTTP = ({ closeDialog }: TabElementProps): JSX.Element => {
},
});
const [connectionInProgress, setConnectionInProgress] = useState(false);
const [https, setHTTPS] = useState(false);
@ -68,7 +67,10 @@ export const HTTP = ({ closeDialog }: TabElementProps): JSX.Element => {
<>
<Label>Use HTTPS</Label>
<Switch
onCheckedChange={(checked) => {checked ? setHTTPS(true) : setHTTPS(false) }}
onCheckedChange={(checked) => {
checked ? setHTTPS(true) : setHTTPS(false);
}}
// label="Use TLS"
// description="Description"
disabled={

Loading…
Cancel
Save