Skip to content

Commit 2be5cb6

Browse files
authored
Link Integrations sidebar heading to home (#1338)
1 parent 5206af2 commit 2be5cb6

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

packages/app/src/web/shell.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,13 @@ function SidebarContent(props: {
205205
<PluginNav pathname={props.pathname} onNavigate={props.onNavigate} />
206206

207207
{/* Sources list */}
208-
<div className="mt-5 mb-1 px-2.5 text-xs font-medium uppercase tracking-widest text-muted-foreground">
209-
<a href="/">Integrations</a>
210-
</div>
208+
<Link
209+
to="/{-$orgSlug}"
210+
className="mt-5 mb-1 px-2.5 text-xs font-medium uppercase tracking-widest text-muted-foreground"
211+
onClick={props.onNavigate}
212+
>
213+
<span>Integrations</span>
214+
</Link>
211215

212216
<IntegrationList pathname={props.pathname} onNavigate={props.onNavigate} />
213217
</nav>

0 commit comments

Comments
 (0)