Update flow builder iframe to Lightspark Vercel deployment#274
Update flow builder iframe to Lightspark Vercel deployment#274
Conversation
Made-with: Cursor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR updates the Flow Builder iframe URL from the personal Vercel deployment (
Confidence Score: 5/5
|
| Filename | Overview |
|---|---|
| mintlify/flow-builder.mdx | Updates iframe src URL from grid-visualizer-opal.vercel.app to grid-flow-builder.vercel.app — simple, correct URL swap with no logic changes. |
| components/grid-visualizer/CLAUDE.md | Updates the "Currently deployed at" documentation URL to match the new team Vercel deployment, addressing the previous review thread request. |
Sequence Diagram
sequenceDiagram
participant Docs as grid.lightspark.com<br/>(Mintlify)
participant IFrame as grid-flow-builder.vercel.app<br/>(iframe)
Docs->>IFrame: Load src with ?embed=true&theme=light|dark
IFrame-->>Docs: postMessage { type: 'theme-request' }
Docs->>IFrame: postMessage { type: 'theme-sync', theme }
Note over Docs: MutationObserver watches<br/>documentElement classList
Docs->>IFrame: postMessage { type: 'theme-sync', theme } on class change
IFrame-->>Docs: postMessage { type: 'theme-sync', theme } on internal toggle
Last reviewed commit: bcaa860
| React.useEffect(() => { | ||
| const isDark = document.documentElement.classList.contains('dark'); | ||
| setSrc('https://grid-visualizer-opal.vercel.app/?embed=true&theme=' + (isDark ? 'dark' : 'light')); | ||
| setSrc('https://grid-flow-builder.vercel.app/?embed=true&theme=' + (isDark ? 'dark' : 'light')); |
There was a problem hiding this comment.
Stale URL in CLAUDE.md
Note: components/grid-visualizer/CLAUDE.md (line 20) still references the old personal deployment URL https://grid-visualizer-opal.vercel.app/. Consider updating it to the new grid-flow-builder.vercel.app URL to keep documentation consistent.
Prompt To Fix With AI
This is a comment left during a code review.
Path: mintlify/flow-builder.mdx
Line: 13
Comment:
**Stale URL in CLAUDE.md**
Note: `components/grid-visualizer/CLAUDE.md` (line 20) still references the old personal deployment URL `https://grid-visualizer-opal.vercel.app/`. Consider updating it to the new `grid-flow-builder.vercel.app` URL to keep documentation consistent.
How can I resolve this? If you propose a fix, please make it concise.There was a problem hiding this comment.
this seems right can you make the CLAUDE.md update?
There was a problem hiding this comment.
Sure! In components/grid-visualizer/CLAUDE.md on line 20, change:
- Currently deployed at: https://grid-visualizer-opal.vercel.app/
to:
- Currently deployed at: https://grid-flow-builder.vercel.app/
Made-with: Cursor
Summary
Points the flow builder iframe in the docs from the personal Vercel deployment (
grid-visualizer-opal.vercel.app) to the Lightspark team deployment (grid-flow-builder.vercel.app).One-line change in
mintlify/flow-builder.mdx.Test plan
Made with Cursor