Skip to content

Commit

Permalink
remove debug statement on key press
Browse files Browse the repository at this point in the history
  • Loading branch information
Amy Chen authored and Amy Chen committed Jul 3, 2024
1 parent a60e510 commit cc0b9f3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/MessagingView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ export default class MessagingView extends React.Component<
let communications = [];
communications.push(...this.state.communications);
communications.push(...this.state.temporaryCommunications);
console.log("communications to be sorted ", communications);
communications.sort((a, b) => {
let d1 = a.sent ? a.sent : a.received ?? a.meta?.lastUpdated;
let d2 = b.sent ? b.sent : b.received ?? b.meta?.lastUpdated;
Expand Down

0 comments on commit cc0b9f3

Please sign in to comment.