Fixed default address in the hint (#19202)

fixes GRO-101
This commit is contained in:
Djordje Vlaisavljevic 2023-11-30 14:22:41 +00:00 committed by GitHub
parent 77e9ea987b
commit 4284e4bcdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,7 +144,7 @@ const Sidebar: React.FC<{
return (
<TextField
error={Boolean(errors.sender_email)}
hint={errors.sender_email || `If left empty, noreply@${sendingDomain(config)} will be used`}
hint={errors.sender_email || `If left empty, ${defaultEmailAddress} will be used`}
rightPlaceholder={`@${sendingDomain(config)}`}
title="Sender email address"
value={sendingEmailUsername || ''}