File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
apps/dashboard/components Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ export function CategorySidebar({
8383 < button
8484 className = { cn (
8585 'flex items-center justify-center px-3 py-2.5 transition-colors hover:bg-sidebar-accent/50' ,
86- 'focus:outline-none focus:ring-2 focus:ring-sidebar-ring/50 ' ,
86+ 'focus:outline-none' ,
8787 isActive && 'bg-sidebar-accent text-sidebar-accent-foreground'
8888 ) }
8989 onClick = { ( ) => onCategoryChange ?.( category . id ) }
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export const NavigationSection = memo(function NavigationSectionComponent({
112112 return (
113113 < div className = "border-sidebar-border/30 border-b border-dotted last:border-b-0" >
114114 < button
115- className = "flex w-full items-center gap-3 px-3 py-2.5 text-left font-medium text-sidebar-foreground text-sm transition-colors hover:bg-sidebar-accent/50 focus:outline-none focus:ring-2 focus:ring-sidebar-ring/50 "
115+ className = "flex w-full items-center gap-3 px-3 py-2.5 text-left font-medium text-sidebar-foreground text-sm transition-colors hover:bg-sidebar-accent/50 focus:outline-none"
116116 onClick = { ( ) => toggleAccordion ( title , true ) }
117117 type = "button"
118118 >
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export function WebsiteDialog({
103103 toast . success ( 'Website created successfully!' ) ;
104104 }
105105 onOpenChange ( false ) ;
106- } catch ( error : never ) {
106+ } catch ( error ) {
107107 const message =
108108 error . data ?. code === 'CONFLICT'
109109 ? 'A website with this domain already exists.'
You can’t perform that action at this time.
0 commit comments