Skip to content

Commit

Permalink
Remove console.log in peers page (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlsmaycon authored Jan 19, 2023
1 parent 5d90147 commit b733a18
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/views/Peers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,6 @@ export const Peers = () => {

<Column title="LastSeen" dataIndex="last_seen"
render={(text, record, index) => {
console.log(text)
let dt = new Date(text)
return <Popover content={dt.toLocaleString()}>
{(record as PeerDataTable).connected ? 'just now' : timeAgo(text)}
Expand Down

0 comments on commit b733a18

Please sign in to comment.