Update 'next' version and dependencies in pnpm-lock.yaml

This commit updates the package version of 'next' from 14.3.0-canary.7 to 14.3.0-canary.9 throughout the pnpm-lock.yaml file. Other dependencies updated with the respective package include '@makerkit/data-loader-supabase-nextjs', '@keystatic/next' and so on. This update is important to ensure the latest features are being utilized while retaining compatibility with existing code.
This commit is contained in:
giancarlo
2024-04-18 15:34:07 +08:00
parent 0dfd5d8ec1
commit 53f94abe88
23 changed files with 205 additions and 194 deletions

View File

@@ -161,12 +161,12 @@ export function SidebarItem({
const currentPath = usePathname() ?? '';
const active = isRouteActive(path, currentPath, end ? 0 : 3);
const variant = active ? 'secondary' : 'ghost';
const size = collapsed ? 'icon' : 'default';
const size = collapsed ? 'icon' : 'sm';
return (
<Link key={path} href={path}>
<Button
className={cn('flex w-full shadow-none', {
className={cn('flex w-full text-sm shadow-none', {
'justify-start space-x-2': !collapsed,
})}
size={size}