From b895cc6aad82f4c781d77e9f005adc7aa6dfd9a8 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 21 Aug 2023 14:40:57 +0530 Subject: [PATCH] capitalize progress --- src/dns.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 });