Shun Miyazawa hace 4 años
padre
commit
3b58b7559d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/app/src/stores/activity.ts

+ 1 - 1
packages/app/src/stores/activity.ts

@@ -6,7 +6,7 @@ import { IActivityHasId } from '../interfaces/activity';
 import { PaginateResult } from '../interfaces/mongoose-utils';
 
 type IQuery = {
-  action?: string
+  action?: string[]
 }
 
 export const useSWRxActivityList = (limit?: number, offset?: number, query?: IQuery): SWRResponse<PaginateResult<IActivityHasId>, Error> => {