Fix some chat related bugs
Docker / build-and-push-image (push) Successful in 22m43s

This commit is contained in:
Jon Staab
2026-03-31 11:18:02 -07:00
parent 97ff8ff802
commit fe89df2aa3
2 changed files with 7 additions and 3 deletions
+5 -2
View File
@@ -546,8 +546,11 @@ export const chatsById = call(() => {
const unsubscribers = [
on(repository, "update", ({added, removed}: RepositoryUpdate) => {
addEvents(added)
removeEvents(removed)
// Do this async so that profiles are populated
setTimeout(() => {
addEvents(added)
removeEvents(removed)
}, 50)
}),
]