From 25d2d25fbc1b58e92655dd1898b4290f574dd6cb Mon Sep 17 00:00:00 2001 From: trisua Date: Sun, 27 Apr 2025 23:46:12 -0400 Subject: [PATCH] fix: don't show community id 0 in chats ui --- crates/app/src/public/html/chats/app.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/app/src/public/html/chats/app.html b/crates/app/src/public/html/chats/app.html index c55a970..80f5512 100644 --- a/crates/app/src/public/html/chats/app.html +++ b/crates/app/src/public/html/chats/app.html @@ -31,7 +31,7 @@ {{ icon "message-circle" }} - {% for community in communities %} + {% for community in communities %} {% if community.id != 0 %} - {% endfor %} + {% endif %} {% endfor %}