Skip to content

Commit

Permalink
chore(notification): 962 fix message direction
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-mmaul committed Jun 20, 2024
1 parent 1f7a3cd commit b6ecbc1
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export class NotificationReasonComponent {
const sortedMessagesAfterDates = messages.sort((a, b) => new Date(a.messageDate).valueOf() - new Date(b.messageDate).valueOf());

sortedMessagesAfterDates.forEach(message => {
console.log(environment.bpn);
this.textMessages.push({
message: message.message,
direction: environment.bpn === message.sentBy ? 'right' : 'left',
Expand Down

0 comments on commit b6ecbc1

Please sign in to comment.