feat: Allow setting customer panel URL via environment variables
This commit is contained in:
@@ -44,7 +44,7 @@ const SmtpPane = React.memo(() => {
|
||||
const [data, handleFieldChange] = useForm(() => ({
|
||||
...defaultData,
|
||||
smtpHost: defaultData.smtpHost || '',
|
||||
smtpPort: defaultData.smtpPort || '',
|
||||
smtpPort: defaultData.smtpPort === null ? '' : `${defaultData.smtpPort}`,
|
||||
smtpName: defaultData.smtpName || '',
|
||||
smtpSecure: defaultData.smtpSecure,
|
||||
smtpTlsRejectUnauthorized: defaultData.smtpTlsRejectUnauthorized,
|
||||
|
||||
Reference in New Issue
Block a user