betterstart-cli 0.0.93 → 0.0.95

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,25 +13,15 @@ import { SidebarNavLink } from './admin-sidebar-nav-link'
13
13
 
14
14
  const settingsNav = [
15
15
  {
16
- label: 'Global',
16
+ label: 'Settings',
17
17
  items: [
18
18
  { label: 'General', href: '/admin/settings', exact: true },
19
- { label: 'Audit logs', href: '/admin/settings/audit-log', exact: true }
20
- ]
21
- },
22
- {
23
- label: 'Forms',
24
- items: [
19
+ { label: 'Audit logs', href: '/admin/settings/audit-log', exact: true },
25
20
  {
26
21
  label: 'Forms',
27
22
  href: '/admin/settings/forms',
28
23
  exact: true
29
- }
30
- ]
31
- },
32
- {
33
- label: 'Webhooks',
34
- items: [
24
+ },
35
25
  {
36
26
  label: 'Webhook endpoints',
37
27
  href: '/admin/settings/webhooks',
@@ -470,7 +470,7 @@ const sidebarMenuButtonVariants = cva(
470
470
  'bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]'
471
471
  },
472
472
  size: {
473
- default: 'h-10 text-sm',
473
+ default: 'h-9 text-sm',
474
474
  sm: 'h-8 text-xs',
475
475
  lg: 'h-14 px-3 text-sm group-data-[collapsible=icon]:p-0!'
476
476
  }