fix(#1417): fixed selecting SOCKS4 proxy option (#1418)

This commit is contained in:
Martin Sefcik 2024-01-29 15:50:02 +01:00 committed by GitHub
parent a077d65a3e
commit d31147961d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ const ProxySettings = ({ proxyConfig, onUpdate }) => {
<input
type="radio"
name="protocol"
value="socks5"
value="socks4"
checked={formik.values.protocol === 'socks4'}
onChange={formik.handleChange}
className="mr-1"

View File

@ -144,7 +144,7 @@ const ProxySettings = ({ close }) => {
<input
type="radio"
name="protocol"
value="socks5"
value="socks4"
checked={formik.values.protocol === 'socks4'}
onChange={formik.handleChange}
className="mr-1"