From b7200cc1fdd64521860295e568cc32f23fc38ca4 Mon Sep 17 00:00:00 2001 From: iamkiddy Date: Sat, 26 Apr 2025 20:26:25 +0000 Subject: [PATCH] refactor: remove unnecessary return type annotation from Sidebar component --- components/recentDesign.tsx | 1 - components/sidebar.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/components/recentDesign.tsx b/components/recentDesign.tsx index 175fc48..9d2adc9 100644 --- a/components/recentDesign.tsx +++ b/components/recentDesign.tsx @@ -28,7 +28,6 @@ const recentDesigns = [ /** * RecentDesign Component * Displays a sidebar with recent designs and a trash section - * @returns JSX.Element */ export default function RecentDesign() { return ( diff --git a/components/sidebar.tsx b/components/sidebar.tsx index 2fe055e..7097d18 100644 --- a/components/sidebar.tsx +++ b/components/sidebar.tsx @@ -20,7 +20,6 @@ const links = [ /** * Sidebar Component * Displays a vertical navigation sidebar with icons and labels - * @returns JSX.Element */ export default function Sidebar() { const pathname = usePathname();