Skip to content

Commit

Permalink
remove more debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Inveracity committed Jul 22, 2023
1 parent 8dc4d54 commit 0fda476
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/lib/grpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,8 @@ export const SendMessage = (msg: OutgoingMessage) => {
ts: "0", // The server will set the timestamp
};

client.send(request, opts).then((response) => {

console.log(response.status.code);
client.send(request, opts).then((_) => {
// nothing
}).catch((e) => {
console.log(e);
});
Expand Down

0 comments on commit 0fda476

Please sign in to comment.