We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ce2a50 commit def76d6Copy full SHA for def76d6
src/renderer/components/LoginForm.tsx
@@ -38,7 +38,7 @@ export function defaultCredentials(credentials?: Credentials): Credentials {
38
send_port: '',
39
send_security: '',
40
smtp_certificate_checks: '',
41
- socks5_enabled: '',
+ socks5_enabled: '0',
42
socks5_host: '',
43
socks5_port: '',
44
socks5_user: '',
src/shared/shared-types.d.ts
@@ -15,7 +15,7 @@ export type Credentials = {
15
send_port?: string
16
send_security?: 'automatic' | '' | 'ssl' | 'starttls' | 'plain'
17
smtp_certificate_checks?: any
18
- socks5_enabled: string
+ socks5_enabled: "1" | "0"
19
socks5_host: string
20
socks5_port: string
21
socks5_user: string
0 commit comments