Skip to content

Commit c0de3e4

Browse files
Copilothuangyiirene
andcommitted
Changes before error encountered
Co-authored-by: huangyiirene <7665279+huangyiirene@users.noreply.github.com>
1 parent 9f4eda2 commit c0de3e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/designer/src/components/LeftSidebar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const LeftSidebar: React.FC<LeftSidebarProps> = React.memo(({ className }
1414
const [activeTab, setActiveTab] = useState<TabType>('palette');
1515

1616
return (
17-
<div className={cn("flex flex-col h-full bg-white border-r w-72", className)}>
17+
<div className={cn("flex flex-col h-full bg-white w-72", className)}>
1818
{/* Tab Headers */}
1919
<div className="flex border-b bg-gray-50/50 shrink-0">
2020
<button
@@ -44,7 +44,7 @@ export const LeftSidebar: React.FC<LeftSidebarProps> = React.memo(({ className }
4444
</div>
4545

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

0 commit comments

Comments
 (0)