Skip to content

Commit 13a99b0

Browse files
committed
🤖 Remove git conflict markers from ProjectSidebar
1 parent f0a46ad commit 13a99b0

File tree

1 file changed

+0
-61
lines changed

1 file changed

+0
-61
lines changed

src/components/ProjectSidebar.tsx

Lines changed: 0 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -424,45 +424,6 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
424424
<RenameProvider onRenameWorkspace={onRenameWorkspace}>
425425
<DndProvider backend={HTML5Backend}>
426426
<ProjectDragLayer />
427-
<<<<<<< HEAD
428-
<SidebarContent role="navigation" aria-label="Projects">
429-
{!collapsed && (
430-
<>
431-
<SidebarHeader>
432-
<h2>Projects</h2>
433-
<TooltipWrapper inline>
434-
<AddProjectBtn onClick={onAddProject} aria-label="Add project">
435-
+
436-
</AddProjectBtn>
437-
<Tooltip className="tooltip" align="right">
438-
Add Project
439-
</Tooltip>
440-
</TooltipWrapper>
441-
</SidebarHeader>
442-
<ProjectsList>
443-
=======
444-
<div
445-
className="flex flex-col flex-1 overflow-hidden font-primary"
446-
role="navigation"
447-
aria-label="Projects"
448-
>
449-
{!collapsed && (
450-
<>
451-
<div className="flex justify-between items-center p-4 border-b border-[#1e1e1e]">
452-
<h2 className="m-0 text-[13px] font-semibold text-[#cccccc] uppercase tracking-[0.8px]">
453-
Projects
454-
</h2>
455-
<button
456-
onClick={onAddProject}
457-
title="Add Project"
458-
aria-label="Add project"
459-
className="w-6 h-6 bg-transparent text-[#cccccc] border border-transparent rounded cursor-pointer text-lg flex items-center justify-center p-0 transition-all duration-200 hover:bg-[#2a2a2b] hover:border-[#3c3c3c]"
460-
>
461-
+
462-
</button>
463-
</div>
464-
<div className="flex-1 overflow-y-auto">
465-
>>>>>>> 6778c48 (🤖 fix: Restore properly converted Tailwind files after rebase)
466427
{projects.size === 0 ? (
467428
<EmptyState>
468429
<p>No projects</p>
@@ -601,28 +562,6 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
601562
>
602563
<div className="label">
603564
<span>Older than {formatOldWorkspaceThreshold()}</span>
604-
<<<<<<< HEAD
605-
<span className="count">({old.length})</span>
606-
</div>
607-
<span className="arrow"></span>
608-
</OldWorkspacesSection>
609-
=======
610-
<span className="text-[#666] font-normal">
611-
({old.length})
612-
</span>
613-
</div>
614-
<span
615-
className="arrow text-[11px] text-[#666] transition-transform duration-200 ease-in-out"
616-
style={{
617-
transform: showOldWorkspaces
618-
? "rotate(90deg)"
619-
: "rotate(0deg)",
620-
}}
621-
>
622-
623-
</span>
624-
</button>
625-
>>>>>>> 6778c48 (🤖 fix: Restore properly converted Tailwind files after rebase)
626565
{showOldWorkspaces && old.map(renderWorkspace)}
627566
</>
628567
)}

0 commit comments

Comments
 (0)