Skip to content
Prev Previous commit
Next Next commit
chore: linter class ordering fixes and docs link update
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Mar 14, 2026
commit b4cd61a4393cd911964e75993b23ac167936dfcb
4 changes: 2 additions & 2 deletions apps/docs/components/ui/animated-blocks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ export function AnimatedBlocks() {
<BlockGroup width={295} height={34} viewBox='0 0 295 34' rects={RECTS.topRight} />
</div>

<div className='absolute bottom-0 -left-24 w-[calc(140px+10.76vw)] max-w-[295px] rotate-180'>
<div className='-left-24 absolute bottom-0 w-[calc(140px+10.76vw)] max-w-[295px] rotate-180'>
<BlockGroup width={295} height={34} viewBox='0 0 295 34' rects={RECTS.bottomLeft} />
</div>

<div className='absolute right-0 -bottom-2 w-[calc(16px+1.25vw)] max-w-[34px]'>
<div className='-bottom-2 absolute right-0 w-[calc(16px+1.25vw)] max-w-[34px]'>
<BlockGroup width={34} height={102} viewBox='0 0 34 102' rects={RECTS.bottomRight} />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/app/(home)/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface NavLink {
}

const NAV_LINKS: NavLink[] = [
{ label: 'Docs', href: '/docs', icon: 'chevron' },
{ label: 'Docs', href: 'https://docs.sim.ai', external: true },
{ label: 'Pricing', href: '/pricing' },
{ label: 'Careers', href: '/careers' },
{ label: 'Enterprise', href: '/enterprise' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export function ConnectorSelectorField({

if (isLoading && isEnabled) {
return (
<div className='flex items-center gap-2 rounded-[4px] border border-[var(--border-1)] bg-[var(--surface-5)] px-[8px] py-[6px] text-sm text-[var(--text-muted)]'>
<div className='flex items-center gap-2 rounded-[4px] border border-[var(--border-1)] bg-[var(--surface-5)] px-[8px] py-[6px] text-[var(--text-muted)] text-sm'>
<Loader2 className='h-3.5 w-3.5 animate-spin' />
Loading...
</div>
Expand Down
Loading