feat: add panel title headings to all UserSettings panels

This commit is contained in:
Jannis Braun
2026-03-22 02:17:38 +01:00
parent 3b06818614
commit d54de16ec8
5 changed files with 10 additions and 1 deletions
@@ -1,5 +1,10 @@
import { ConnectedInstances } from '../ConnectedInstances';
export function ConnectionsPanel() {
return <ConnectedInstances />;
return (
<div className="space-y-5">
<h2 className="text-lg font-semibold text-txt-primary mb-6">Connections</h2>
<ConnectedInstances />
</div>
);
}