diff --git a/src/store/states/inbox/saga/refreshUnreadInboxItems.ts b/src/store/states/inbox/saga/refreshUnreadInboxItems.ts
index f2f61f2681..9b01188219 100644
--- a/src/store/states/inbox/saga/refreshUnreadInboxItems.ts
+++ b/src/store/states/inbox/saga/refreshUnreadInboxItems.ts
@@ -19,13 +19,13 @@ export function* refreshUnreadInboxItems() {
 
     while (keepItemsFetching) {
       const { data, lastDocTimestamp, hasMore } = (yield call(
-        UserService.getInboxItems,
+        UserService.getInboxItemsWithMetadata,
         {
           startAfter,
           limit: 5,
           unread: true,
         },
-      )) as Awaited<ReturnType<typeof UserService.getInboxItems>>;
+      )) as Awaited<ReturnType<typeof UserService.getInboxItemsWithMetadata>>;
       const chatChannelItems = data.chatChannels
         .filter(
           (chatChannel) =>