Skip to content

Commit 1ca7c2f

Browse files
committed
fix: ANNOYING RINGS
1 parent e874851 commit 1ca7c2f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/dashboard/components/layout/category-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)}

apps/dashboard/components/layout/navigation/navigation-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
>

apps/dashboard/components/website-dialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.'

0 commit comments

Comments
 (0)