diff --git a/app/screens/home/channel_list/categories_list/categories/body/category_body.tsx b/app/screens/home/channel_list/categories_list/categories/body/category_body.tsx index 098283957..e5077a2e6 100644 --- a/app/screens/home/channel_list/categories_list/categories/body/category_body.tsx +++ b/app/screens/home/channel_list/categories_list/categories/body/category_body.tsx @@ -63,8 +63,7 @@ const CategoryBody = ({sortedChannels, category, hiddenChannelIds, limit, onChan }, [category.collapsed]); useEffect(() => { - const direct = directChannels.filter(isDMorGM); - fetchDirectChannelsInfo(serverUrl, direct); + fetchDirectChannelsInfo(serverUrl, directChannels); }, [directChannels.length]); const height = ids.length ? ids.length * 40 : 0;