Przeglądaj źródła

Remove not needed populate field since aggregation pipeline is used

arvid-e 5 miesięcy temu
rodzic
commit
9a7310edcb
1 zmienionych plików z 0 dodań i 1 usunięć
  1. 0 1
      apps/app/src/stores/recent-activity.ts

+ 0 - 1
apps/app/src/stores/recent-activity.ts

@@ -21,7 +21,6 @@ export const useSWRxRecentActivity = (
     const promise = apiv3Get<UserActivitiesResult>(endpoint, {
       limit: limitParam,
       offset: offsetParam,
-      populate: 'target',
     });
 
     return promise.then(result => result.data.serializedPaginationResult);