Add Sign out button to settings panel Account section

This commit is contained in:
2026-04-26 12:03:28 -04:00
parent 315a91e943
commit 2334ba976d
+6
View File
@@ -196,6 +196,12 @@ export default function SettingsPanel() {
<StatusRow label="Model" value={status?.model || 'unknown'} ok={true} yellow /> <StatusRow label="Model" value={status?.model || 'unknown'} ok={true} yellow />
</Section> </Section>
<Section title="Account">
<Row label="Sign out" desc="End your current session">
<SBtn danger onClick={logout}>Sign out</SBtn>
</Row>
</Section>
</div> </div>
</div> </div>
</> </>