make app switcher logo click navigate to app homepage

Anton Kaminsky3/1/2026953e989fb31aparent 9f470a7
1 file changed+5-5
web/app/components/ui/navbar.tsx
@@ -204,11 +204,11 @@
204204 transition: "width 0.2s ease",
205205 }}
206206 >
207 {/* Current app trigger row */}
208 <div
207 {/* Current app trigger row — links to app home */}
208 <a
209 href="/"
209210 className={rowClass}
210 onClick={() => setExpanded((v) => !v)}
211 style={{ cursor: "pointer", whiteSpace: "nowrap" }}
211 style={{ cursor: "pointer", whiteSpace: "nowrap", textDecoration: "none" }}
212212 >
213213 <span className="shrink-0" style={{ width: 28, height: 28, display: "flex", alignItems: "center", justifyContent: "center" }}>
214214 {logo}
@@ -221,7 +221,7 @@
221221 {productName}
222222 </span>
223223 )}
224 </div>
224 </a>
225225
226226 {/* Other apps — expand below */}
227227 <div
228228