MM-58459 Fix unread threads not always being loaded correctly (#27200)

Этот коммит содержится в:
Harrison Healey
2024-05-31 11:07:35 -04:00
коммит произвёл GitHub
родитель b788760e17
Коммит 6166f4e7d3

Просмотреть файл

@@ -110,7 +110,7 @@ const GlobalThreads = () => {
}
if (filter === ThreadFilter.unread && shouldLoadUnreadThreads) {
promises.push(dispatch(getThreadsForCurrentTeam({unread: false})));
promises.push(dispatch(getThreadsForCurrentTeam({unread: true})));
}
Promise.all(promises).then(() => {