Explorar el Código

Remove not needed populate field since aggregation pipeline is used

arvid-e hace 5 meses
padre
commit
9a7310edcb
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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);