Shun Miyazawa пре 4 година
родитељ
комит
3b58b7559d
1 измењених фајлова са 1 додато и 1 уклоњено
  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> => {