Skip to content

Commit 931f352

Browse files
committed
Fix space path visible in DM's
1 parent 3372fb6 commit 931f352

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/organisms/navigation/Drawer.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ function Drawer() {
6464
<div className="drawer">
6565
<DrawerHeader selectedTab={selectedTab} spaceId={spaceId} />
6666
<div className="drawer__content-wrapper">
67-
{navigation.selectedSpacePath.length > 1 && <DrawerBreadcrumb spaceId={spaceId} />}
67+
{navigation.selectedSpacePath.length > 1 && selectedTab !== cons.tabs.DIRECTS && (
68+
<DrawerBreadcrumb spaceId={spaceId} />
69+
)}
6870
<div className="rooms__wrapper">
6971
<ScrollView ref={scrollRef} autoHide>
7072
<div className="rooms-container">

0 commit comments

Comments
 (0)