@wise/dynamic-flow-client 4.19.3-experimental-6e22f2a → 4.19.3-experimental-ebee37a
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/build/main.js +1 -1
- package/build/main.mjs +1 -1
- package/package.json +1 -1
package/build/main.js
CHANGED
|
@@ -7525,7 +7525,7 @@ var className = "dynamic-flow";
|
|
|
7525
7525
|
function DynamicFlowCore(props) {
|
|
7526
7526
|
var _a;
|
|
7527
7527
|
const { flowId, renderers, httpClient, onEvent, onError, onLog } = props;
|
|
7528
|
-
const normalisedFlowId = flowId.
|
|
7528
|
+
const normalisedFlowId = flowId.replaceAll(" ", "-");
|
|
7529
7529
|
const { rootComponent } = useDynamicFlowCore(__spreadProps(__spreadValues({}, props), {
|
|
7530
7530
|
scrollToTop: (behavior) => {
|
|
7531
7531
|
var _a2;
|
package/build/main.mjs
CHANGED
|
@@ -7482,7 +7482,7 @@ var className = "dynamic-flow";
|
|
|
7482
7482
|
function DynamicFlowCore(props) {
|
|
7483
7483
|
var _a;
|
|
7484
7484
|
const { flowId, renderers, httpClient, onEvent, onError, onLog } = props;
|
|
7485
|
-
const normalisedFlowId = flowId.
|
|
7485
|
+
const normalisedFlowId = flowId.replaceAll(" ", "-");
|
|
7486
7486
|
const { rootComponent } = useDynamicFlowCore(__spreadProps(__spreadValues({}, props), {
|
|
7487
7487
|
scrollToTop: (behavior) => {
|
|
7488
7488
|
var _a2;
|