Skip to content

Commit

Permalink
Remove extra info
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov committed Apr 26, 2024
1 parent 75e0590 commit 29fb321
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/editor-ui/src/stores/workflows.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ export const useWorkflowsStore = defineStore(STORES.WORKFLOWS, {
const rootStore = useRootStore();

if (data.settings === null) {
EventReporter.info('Detected workflow payload with settings as null', { extra: { data } });
EventReporter.info('Detected workflow payload with settings as null');
data.settings = undefined;
}

Expand All @@ -1331,9 +1331,7 @@ export const useWorkflowsStore = defineStore(STORES.WORKFLOWS, {
const rootStore = useRootStore();

if (startRunData.workflowData.settings === null) {
EventReporter.info('Detected workflow payload with settings as null', {
extra: { startRunData },
});
EventReporter.info('Detected workflow payload with settings as null');
startRunData.workflowData.settings = undefined;
}

Expand Down

0 comments on commit 29fb321

Please sign in to comment.