We always show 1 session

This commit is contained in:
Shantur Rathore
2025-11-16 22:36:49 +00:00
parent 492c6064f9
commit 03237f6f79

View File

@@ -352,7 +352,7 @@ const SessionList: Component<SessionListProps> = (props) => {
<Show when={userSessionIds().length > 0}>
<div class="session-section">
<div class="session-section-header px-3 py-2 text-xs font-semibold text-primary/70 uppercase tracking-wide">
User Sessions
User Session
</div>
<For each={userSessionIds()}>{(id) => <SessionRow sessionId={id} canClose />}</For>
</div>