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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
2 deletions
-
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={ |
|
|
|
|