Fix formatting in Navigation.tsx - remove empty lines

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-17 21:43:11 +00:00
parent e628b2cd0e
commit 95fa780d68

View File

@@ -96,43 +96,26 @@ export function NavigationSidebar() {
variant={isActive ? 'secondary' : 'ghost'}
className={cn(
'w-full justify-start gap-3',
isActive && 'bg-accent text-accent-foreground'
)}
>
<Icon className="h-5 w-5" />
{item.label}
</Button>
</Link>
</li>
)
})}
</ul>
</nav>
<div className="p-6 border-t border-border">
<p className="text-sm text-muted-foreground">
CodeSnippet Library
</p>
</div>
</div>
</motion.aside>
)
}
isActive && 'bg-accent text-accent-foreground'
)}
>
<Icon className="h-5 w-5" />
{item.label}
</Button>
</Link>
</li>
)
})}
</ul>
</nav>
<div className="p-6 border-t border-border">
<p className="text-sm text-muted-foreground">
CodeSnippet Library
</p>
</div>
</div>
</motion.aside>
)
}