Skip to content

Commit 9f4eda2

Browse files
Copilothuangyiirene
andcommitted
Address code review feedback - refactor border-r-0 to parent container
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
1 parent ea5999c commit 9f4eda2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/designer/src/components/LeftSidebar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ export const LeftSidebar: React.FC<LeftSidebarProps> = React.memo(({ className }
4444
</div>
4545

4646
{/* Tab Content */}
47-
<div className="flex-1 overflow-hidden">
47+
<div className="flex-1 overflow-hidden border-r-0">
4848
{activeTab === 'palette' ? (
49-
<ComponentPalette className="h-full border-r-0" />
49+
<ComponentPalette className="h-full" />
5050
) : (
51-
<ComponentTree className="h-full border-r-0" />
51+
<ComponentTree className="h-full" />
5252
)}
5353
</div>
5454
</div>

0 commit comments

Comments
 (0)