cja-phoenix 0.14.15 → 0.14.16
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/cja-phoenix.es.js
CHANGED
|
@@ -5432,7 +5432,7 @@ const t8 = async (e) => {
|
|
|
5432
5432
|
journeyId: t.journeyId,
|
|
5433
5433
|
stepName: t.stepName,
|
|
5434
5434
|
isCompleted: t.isCompleted || !1,
|
|
5435
|
-
sentToDialer: t.sentToDialer || !
|
|
5435
|
+
sentToDialer: t.sentToDialer || !0,
|
|
5436
5436
|
lastStepNumber: t.step,
|
|
5437
5437
|
lastStepType: t.formType,
|
|
5438
5438
|
lastStepUrl: window.location.pathname + window.location.search + window.location.hash,
|
package/package.json
CHANGED
package/src/utils/updateForm.ts
CHANGED
|
@@ -21,7 +21,7 @@ export const updateForm = (
|
|
|
21
21
|
journeyId: options.journeyId,
|
|
22
22
|
stepName: options.stepName,
|
|
23
23
|
isCompleted: options.isCompleted || false,
|
|
24
|
-
sentToDialer: options.sentToDialer ||
|
|
24
|
+
sentToDialer: options.sentToDialer || true,
|
|
25
25
|
lastStepNumber: options.step,
|
|
26
26
|
lastStepType: options.formType,
|
|
27
27
|
lastStepUrl:
|