Skip to content

Commit

Permalink
remove unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
immqu committed Oct 24, 2023
1 parent e9e6276 commit 5082ec8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/lib/CertificateCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@ let states = certificate.states
let sortedStates = states.sort(
(s1,s2) => {
if (new Date(s1.timestamp.replace(/[A-Z]+$/i, 'UTC')) > new Date(s2.timestamp.replace(/[A-Z]+$/i, 'UTC'))){
console.log("1")
return 1
} else {
console.log("0")
return 0
}
});
Expand Down

0 comments on commit 5082ec8

Please sign in to comment.