#2133 added comments icon and count on notes tab (#2186)

* fix

* #2133 added comments icon and count on notes tab

* reverted changes in people-filters.tsx
This commit is contained in:
Pallavi Varshney
2023-10-23 02:23:37 -07:00
committed by GitHub
parent c80eb5c0b0
commit aaa8ec574d
3 changed files with 36 additions and 8 deletions

View File

@ -29,11 +29,7 @@ type MockedActivity = Pick<
User,
'id' | 'firstName' | 'lastName' | 'displayName' | 'avatarUrl'
>;
comments: Array<
Pick<Comment, 'body' | 'id' | 'createdAt' | 'updatedAt'> & {
author: Pick<User, 'id' | 'displayName' | 'avatarUrl'>;
}
>;
comments: Array<Comment>;
activityTargets: Array<
Pick<
ActivityTarget,