diff --git a/src/frontend/src/stores/flowStore.ts b/src/frontend/src/stores/flowStore.ts index 83dabd3fd..f9fa0197b 100644 --- a/src/frontend/src/stores/flowStore.ts +++ b/src/frontend/src/stores/flowStore.ts @@ -401,7 +401,7 @@ const useFlowStore = create((set, get) => ({ nodeId, onBuildComplete: () => { if (nodeId) { - setSuccessData({ title: `${nodeId} built successfully` }); + setSuccessData({ title: `${get().nodes.find((node) => node.id === nodeId)?.data.node?.display_name} built successfully` }); } else { setSuccessData({ title: `Flow built successfully` }); }