diff --git a/src/components/Sidebar.jsx b/src/components/Sidebar.jsx index 8a160ccd..926379fd 100644 --- a/src/components/Sidebar.jsx +++ b/src/components/Sidebar.jsx @@ -581,9 +581,44 @@ function Sidebar({ - {/* Search Filter and Actions */} + {/* Action Buttons - Desktop only - Always show when not loading */} + {!isLoading && !isMobile && ( +
+
+ + +
+
+ )} + + {/* Search Filter - Only show when there are projects */} {projects.length > 0 && !isLoading && ( -
+
)}
- - {/* Action Buttons - Desktop only */} - {!isMobile && ( -
- - -
- )}
)}