Compare commits

...

2 Commits

View File

@ -424,7 +424,7 @@ export function Sidebar() {
</Button>
)}
{/* Склад ВБ - для селлеров */}
{/* Склад - для селлеров */}
{user?.organization?.type === "SELLER" && (
<Button
variant={isWBWarehouseActive ? "secondary" : "ghost"}
@ -436,10 +436,10 @@ export function Sidebar() {
: "text-white/80 hover:bg-white/10 hover:text-white"
} cursor-pointer`}
onClick={handleWBWarehouseClick}
title={isCollapsed ? "Склад ВБ" : ""}
title={isCollapsed ? "Склад" : ""}
>
<Warehouse className="h-4 w-4 flex-shrink-0" />
{!isCollapsed && <span className="ml-3">Склад ВБ</span>}
{!isCollapsed && <span className="ml-3">Склад</span>}
</Button>
)}