Skip to content

Commit e44193b

Browse files
committed
fix: remove max-w-4xl constraint so API Keys page fills full width
Matches DashboardHome which uses full-width layout. The constrained width left half the screen empty and looked odd.
1 parent 0ab7225 commit e44193b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/pages/APIKeysPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export function APIKeysPage() {
190190
}
191191

192192
return (
193-
<div className="space-y-6 max-w-4xl">
193+
<div className="space-y-6">
194194
{/* Header */}
195195
<div className="flex items-center justify-between">
196196
<div className="flex items-center gap-3">

0 commit comments

Comments
 (0)