Skip to content

Commit 1a9448e

Browse files
committed
Portal: Fix lint error (#6552)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on restructuring the `sidebar` object in the `apps/portal/src/app/nebula/sidebar.tsx` file, ensuring proper formatting of the sidebar items and improving the overall readability of the code. ### Detailed summary - Adjusted the formatting of the `sidebar` entries for `MCP Server` and `Tools`. - Converted closing brackets from separate lines to inline, enhancing code clarity. - Ensured consistent object structure for items in the `sidebar`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 2fe1611 commit 1a9448e

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

apps/portal/src/app/nebula/sidebar.tsx

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export const sidebar: SideBar = {
152152
},
153153
],
154154
},
155-
]
155+
],
156156
},
157157
{
158158
name: "MCP Server",
@@ -174,10 +174,10 @@ export const sidebar: SideBar = {
174174
{
175175
name: "MCP Server",
176176
href: "/nebula/mcp-server/integrations/mcp-server",
177-
}
178-
]
179-
}
180-
]
177+
},
178+
],
179+
},
180+
],
181181
},
182182
{
183183
name: "Tools",
@@ -196,10 +196,9 @@ export const sidebar: SideBar = {
196196
name: "Examples",
197197
href: "/nebula/tools/python-sdk/examples",
198198
},
199-
]
200-
}
201-
202-
]
199+
],
200+
},
201+
],
203202
},
204203
{
205204
separator: true,

0 commit comments

Comments
 (0)