fix: redirection url typo

This commit is contained in:
abdou6666 2025-04-07 17:21:54 +01:00
parent c9b2cb6238
commit 6e16308db1

View File

@ -345,7 +345,7 @@ const VisualEditorProvider: React.FC<VisualEditorContextProps> = ({
const triggeredFlowUrl = `/${RouterType.VISUAL_EDITOR}/flows/${triggeredFlow}`;
if (window.location.href !== triggeredFlowUrl) {
await router.push(triggeredFlow);
await router.push(triggeredFlowUrl);
}
}