Skip to content

Commit be1eb80

Browse files
authored
fix(ui): fix MCP servers page scrolling overflow (#173)
1 parent e126b60 commit be1eb80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/src/pages/McpServersPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ export function McpServersPage() {
234234
};
235235

236236
return (
237-
<div className="w-full">
238-
<div className="mx-auto w-full max-w-4xl px-6 py-8 flex-1 flex flex-col">
237+
<div className="w-full h-full overflow-y-auto">
238+
<div className="mx-auto w-full max-w-4xl px-6 py-8 flex flex-col min-h-full">
239239
{/* Page Header */}
240240
<div className="mb-6">
241241
<button
@@ -252,7 +252,7 @@ export function McpServersPage() {
252252
</div>
253253

254254
{/* Main Content */}
255-
<div className="flex-1 overflow-y-auto">
255+
<div className="flex-1">
256256
{isLoading ? (
257257
<div className="flex items-center justify-center p-8">
258258
<div className="text-sm text-muted-foreground">

0 commit comments

Comments
 (0)