-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🐞 Platform bug squashing #1178
🐞 Platform bug squashing #1178
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Hi 👋 Here's a preview environment 🚀 https://next-reworkd-agentgpt-1178.env.ergomake.link Environment Summary 📑
Here are your environment's logs. For questions or comments, join Discord. Click here to disable Ergomake. |
next/src/pages/workflow/index.tsx
Outdated
@@ -89,6 +96,15 @@ const WorkflowPage: NextPage = () => { | |||
const showLoader = !router.isReady || (isLoading && !!workflowId); | |||
const showCreateForm = !workflowId && router.isReady; | |||
|
|||
useEffect(() => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should remove use effect
next/src/pages/workflow/index.tsx
Outdated
@@ -252,7 +258,7 @@ const WorkflowPage: NextPage = () => { | |||
nodesModel={nodesModel} | |||
edgesModel={edgesModel} | |||
className="min-h-screen flex-1" | |||
onPaneClick={() => setOpen(true)} | |||
onPaneClick={onPaneClick} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed this to onPaneDoubleClick in a different commit, should be good to merge after fixing conflicts :)
No description provided.