Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
9a00098
feat: skills import, MCP modal updates, wordmark icon, tool-input imp…
waleedlatif1 Mar 25, 2026
2079f69
fix: resolve build error and audit findings from simplify review
waleedlatif1 Mar 25, 2026
942dbf0
fix(scripts): fix docs mismatch and N+1 query in ban-spam-accounts
waleedlatif1 Mar 25, 2026
9362fb0
feat: wire wordmark into sidebar, fix credential selector modal dispatch
waleedlatif1 Mar 25, 2026
5a7e0e5
feat(misc): misc UX/UI improvements
waleedlatif1 Mar 26, 2026
2056d00
more random fixes
waleedlatif1 Mar 26, 2026
9bb6311
more random fixes
waleedlatif1 Mar 26, 2026
427145b
fix: address PR review findings from cursor bugbot
waleedlatif1 Mar 26, 2026
2862163
fix(skills): add ZIP file size guard before extraction
waleedlatif1 Mar 26, 2026
0b49c49
feat(settings-sidebar): show locked upsell items with plan badge
waleedlatif1 Mar 26, 2026
1fd4bdf
fix(settings-sidebar): remove flex-1 from label span to fix text cent…
waleedlatif1 Mar 26, 2026
bab6311
feat(settings-sidebar): remove team gate from email polling, keep onl…
waleedlatif1 Mar 26, 2026
bdaa4df
feat(subscription): billing details layout and Enterprise card improv…
waleedlatif1 Mar 26, 2026
f97ebee
fix(mothership): prevent lastSeenAt conflict when both title and isUn…
waleedlatif1 Mar 26, 2026
f475ae9
fix(sidebar): prevent double-save race in flyout inline rename on Ent…
waleedlatif1 Mar 26, 2026
7fad0d3
fix(skills): normalize CRLF line endings before parsing SKILL.md fron…
waleedlatif1 Mar 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(settings-sidebar): remove flex-1 from label span to fix text cent…
…ering
  • Loading branch information
waleedlatif1 committed Mar 26, 2026
commit 1fd4bdfb19a682f34a85edbfc24b71c027f5924b
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,11 @@ export function SettingsSidebar({
const content = (
<>
<Icon className='h-[16px] w-[16px] flex-shrink-0 text-[var(--text-icon)]' />
<span className='min-w-0 flex-1 truncate font-base text-[var(--text-body)]'>
<span className='min-w-0 truncate font-base text-[var(--text-body)]'>
{item.label}
</span>
{isLocked && (
<span className='shrink-0 rounded-[3px] bg-[var(--surface-5)] px-[4px] py-[1px] font-medium text-[9px] text-[var(--text-icon)] uppercase tracking-wide'>
<span className='ml-auto shrink-0 rounded-[3px] bg-[var(--surface-5)] px-[4px] py-[1px] font-medium text-[9px] text-[var(--text-icon)] uppercase tracking-wide'>
{item.requiresMax ? 'Max' : 'Team'}
</span>
)}
Expand Down
Loading