personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove hardcoded inbox from menu bar template

Inbox was rendered twice — once hardcoded outside the dynamic app loop,
then again inside it. Remove the hardcode so inbox renders through the
normal loop like every other app, respecting starring and ordering.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

-5
-5
convey/templates/menu_bar.html
··· 1 1 <!-- Menu Bar Component (left sidebar) --> 2 2 <div class="menu-bar"> 3 3 <div class="menu-items"> 4 - <a href="/app/inbox" class="menu-item{% if app == 'inbox' %} current{% endif %}" data-app-name="inbox" data-starred="true"> 5 - <span class="icon">📥</span> 6 - <span class="label">Inbox</span> 7 - </a> 8 - 9 4 {%- set app_names = apps.keys() | list -%} 10 5 {%- set last_starred_index = -1 -%} 11 6 {%- for i in range(app_names | length) -%}