@mychoice/mychoice-sdk-store 2.1.21 → 2.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +3 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -5458,15 +5458,16 @@ const HomeQuoteDataHandler = () => {
|
|
|
5458
5458
|
}
|
|
5459
5459
|
else if (!isRequested) {
|
|
5460
5460
|
if (!isRecalc) {
|
|
5461
|
+
const stringWithLineBreak = 'Sit tight, while we work hard to save you money...\nPlease note: As insurance premiums are based on the information you provide it is important that it be 100% accurate and up to date. If you are not sure it is best to check and edit your information in the next step.';
|
|
5461
5462
|
if (appConfigState.appType === AppTypes.TheBig) {
|
|
5462
5463
|
openLoader('Please wait while we fetch your lowest rates from our insurance partners.');
|
|
5463
5464
|
}
|
|
5464
5465
|
else {
|
|
5465
|
-
openLoader(
|
|
5466
|
+
openLoader(stringWithLineBreak);
|
|
5466
5467
|
}
|
|
5467
5468
|
}
|
|
5468
5469
|
else {
|
|
5469
|
-
openLoader('
|
|
5470
|
+
openLoader('Hang tight, while we collect and process information about your property');
|
|
5470
5471
|
}
|
|
5471
5472
|
const requestBody = constructRequestBody(quoteState.isRequested || isRecalc);
|
|
5472
5473
|
if (requestBody) {
|