-
Notifications
You must be signed in to change notification settings - Fork 135
feat(devtools): add makeshift devtools #3522
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
PR Review: feat(devtools): add makeshift devtoolsSummaryThis PR introduces a new browser-based inspector package ( Critical Issues 🚨1. Broken JSX Merge Conflict (BLOCKING)Location: The file contains a malformed JSX merge conflict that will cause build failures: {actorId ? (
<Flex gap="2" justify="between" items="center" className="h-full pb-3 pt-2 pr-4 sticky right-0 bg-card">
State // ❌ This should be children of Flex, not a closing TabsTrigger
</TabsTrigger> // ❌ This closing tag doesn't match the opening Flex
) : null}
{supportsConnections ? ( // ❌ Duplicate tabs follow...
<TabsTrigger disabled={disabled} value="connections" className="text-xs px-3 py-1 pb-2">
Connections
</TabsTrigger>
) : null}
// ... more duplicate tabsImpact: Build will fail, TypeScript errors, broken UI. Fix Required: Review lines 211-238 and remove duplicated tab declarations that appear after the 2. Duplicate Function Declaration (BLOCKING)Location: The
Impact: Build failure due to duplicate declarations. Fix Required: Remove one of the duplicate function declarations. 3. Hardcoded Credentials (SECURITY)Locations:
Hardcoded credentials appear in multiple files: url: "http://127.0.0.1:6420",
token: "lNtOy9TZxmt2yGukMJREcJcEp78WDzuj"Impact: Credentials committed to version control, potential security risk if token is valid. Recommendations:
4. Undefined Variable Reference (BLOCKING)Location: onClick={() => setIsOpen((prev) => !prev)}The component uses Impact: Runtime error, broken close button functionality. Fix Required: Either:
Major Issues
|
2036c1b to
183dbc3
Compare
|
Closing in favor of #3589 |

No description provided.