Skip to content

Commit

Permalink
Add the correct user information on comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed Mar 26, 2020
1 parent 2371ee5 commit 65d2206
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ export const transformComments = (
...c,
comment: flow(...pipes.map(p => t[p]))({
value: c.comment,
date: params.createdAt,
user: params.createdBy.fullName ?? '',
date: c.createdAt,
user: c.createdBy.fullName ?? '',
}).value,
}));
};

0 comments on commit 65d2206

Please sign in to comment.