-
Notifications
You must be signed in to change notification settings - Fork 1
draft: please ignore #1098
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
draft: please ignore #1098
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -289,7 +289,8 @@ export const InternalLayoutEditor = ({ | |||||
| }); | ||||||
|
|
||||||
| devLogger.logData("RESOLVED_LAYOUT_DATA", resolvedData); | ||||||
|
|
||||||
| console.log("appState.data:", appState.data); | ||||||
| console.log("Resolved Data:", resolvedData); | ||||||
|
Comment on lines
+292
to
+293
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Avoid logging full editor state via Line 292 and Line 293 print full Suggested change- console.log("appState.data:", appState.data);
- console.log("Resolved Data:", resolvedData);📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| if (isDeepEqual(appState.data, resolvedData)) { | ||||||
| devLogger.log( | ||||||
| "reloadDataOnDocumentChange - no layout changes detected" | ||||||
|
|
||||||
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.
Remove raw debug logging from
resolveDatabefore merge.Line 882 and Line 886 log
entityDocument/entity-type resolution data on every reconciliation pass. This can expose internal document payloads in console output and adds unnecessary runtime noise.Suggested change
📝 Committable suggestion
🤖 Prompt for AI Agents