Skip to content

Commit

Permalink
fix(#1417): fixed selecting SOCKS4 proxy option (#1418)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsefcik authored Jan 29, 2024
1 parent a077d65 commit d311479
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d311479

Please sign in to comment.