Skip to content

Commit b4cd61a

Browse files
waleedlatif1claude
andcommitted
chore: linter class ordering fixes and docs link update
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 31ee9a9 commit b4cd61a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/docs/components/ui/animated-blocks.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,11 @@ export function AnimatedBlocks() {
183183
<BlockGroup width={295} height={34} viewBox='0 0 295 34' rects={RECTS.topRight} />
184184
</div>
185185

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

190-
<div className='absolute right-0 -bottom-2 w-[calc(16px+1.25vw)] max-w-[34px]'>
190+
<div className='-bottom-2 absolute right-0 w-[calc(16px+1.25vw)] max-w-[34px]'>
191191
<BlockGroup width={34} height={102} viewBox='0 0 34 102' rects={RECTS.bottomRight} />
192192
</div>
193193
</div>

apps/sim/app/(home)/components/navbar/navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface NavLink {
1111
}
1212

1313
const NAV_LINKS: NavLink[] = [
14-
{ label: 'Docs', href: '/docs', icon: 'chevron' },
14+
{ label: 'Docs', href: 'https://docs.sim.ai', external: true },
1515
{ label: 'Pricing', href: '/pricing' },
1616
{ label: 'Careers', href: '/careers' },
1717
{ label: 'Enterprise', href: '/enterprise' },

apps/sim/app/workspace/[workspaceId]/knowledge/[id]/components/add-connector-modal/components/connector-selector-field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function ConnectorSelectorField({
6767

6868
if (isLoading && isEnabled) {
6969
return (
70-
<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)]'>
70+
<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'>
7171
<Loader2 className='h-3.5 w-3.5 animate-spin' />
7272
Loading...
7373
</div>

0 commit comments

Comments
 (0)