Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✅ Files skipped from review due to trivial changes (1)
🚧 Files skipped from review as they are similar to previous changes (1)
📝 WalkthroughWalkthroughThe PR normalizes trigger configs when building flows, adjusts child rendering to only render when children array length > 0, and extends node-type mappings with additional aliases (including Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
🚥 Pre-merge checks | ✅ 1 | ❌ 2❌ Failed checks (1 warning, 1 inconclusive)
✅ Passed checks (1 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
use-flow-state.ts-- Changed the NODE_TYPES key from "queue" to "durable:subscriber" so ReactFlow maps durable subscriber steps to QueueFlowNode instead of rendering default white boxes.flows.ts-- Normalized external trigger field names when building triggersByFunction. HTTP triggers now map api_path to path (with leading / restored) and http_method to method. Cron and event/durable:subscriber triggers also get their fields normalized (expression, topic).base-node.tsx-- Replaced the {children && ...} guard with Children.toArray(children).length > 0, which correctly filters out null/false children and avoids rendering an empty padded content box.Summary by CodeRabbit