-
Notifications
You must be signed in to change notification settings - Fork 0
Fix browser panel layout with console open #5
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
Changes from 36 commits
cf7c935
2b6d6f9
28c1d8a
eed9502
316f707
0e6744f
0f4964a
4f04937
82be07a
8d1504c
6ba198b
42f9bda
9ec99a0
db72ca2
0fecb9c
51d965d
fc767ce
bf315ef
bc3239d
fd9d8c6
321008e
f692c0f
7b184df
2782c53
f0b06a7
d40b56a
bf6a11c
278080e
0adc08e
1f4fdc3
57b7231
2213fa3
b6a5a8c
cdc7446
66ef98f
3ab0f1f
0612af5
1e1ac5f
aebb0d8
b80bef8
f547cc0
af5e93b
6c8151f
411b9f6
00efe35
ad452ae
d5febb8
106add2
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 |
|---|---|---|
|
|
@@ -10,6 +10,16 @@ | |
| "shadcn": { | ||
| "command": "npx", | ||
| "args": ["shadcn@latest", "mcp"] | ||
| }, | ||
| "exa": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "exa-mcp-server" | ||
| ], | ||
| "env": { | ||
| "EXA_API_KEY": "64d127d2-c680-47d8-bf81-54b7052dd6aa" | ||
|
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. logic: API key is exposed in plain text. Consider using environment variables for sensitive credentials. Prompt To Fix With AIThis is a comment left during a code review.
Path: .mcp.json
Line: 21:21
Comment:
**logic:** API key is exposed in plain text. Consider using environment variables for sensitive credentials.
How can I resolve this? If you propose a fix, please make it concise.
coderabbitai[bot] marked this conversation as resolved.
Outdated
|
||
| } | ||
| } | ||
| } | ||
|
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. syntax: Extra closing brace. The JSON structure should end with a single closing brace. Prompt To Fix With AIThis is a comment left during a code review.
Path: .mcp.json
Line: 24:24
Comment:
**syntax:** Extra closing brace. The JSON structure should end with a single closing brace.
How can I resolve this? If you propose a fix, please make it concise. |
||
| } | ||
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.
syntax: Missing comma after the shadcn server configuration. This will cause JSON parsing to fail.
Prompt To Fix With AI