diff --git a/src/dns.js b/src/dns.js index a36383fc1..ca52c522f 100644 --- a/src/dns.js +++ b/src/dns.js @@ -193,7 +193,7 @@ async function waitForLocations(locations, progressCallback) { for (const location of locations) { const { subdomain, domain } = location; - progressCallback({ message: `waiting for propagation of: ${fqdn(subdomain, domain)}` }); + progressCallback({ message: `Waiting for propagation of ${fqdn(subdomain, domain)}` }); const [error] = await safe(waitForDnsRecord(subdomain, domain, 'A', ipv4, { times: 240 })); if (error) throw new BoxError(BoxError.DNS_ERROR, `DNS A Record is not synced yet: ${error.message}`, { ipv4, subdomain, domain });