Skip to content

Commit

Permalink
removes console log
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed May 24, 2024
1 parent 3a4bf3f commit d624e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ pinboard({
value: function(item) {
let value;
if (item.attributes.RegistrationPeriodEndDate != null) {
console.log('new Date():', new Date(), 'new Date(item.attributes.RegistrationPeriodEndDate):', new Date(item.attributes.RegistrationPeriodEndDate));
// console.log('new Date():', new Date(), 'new Date(item.attributes.RegistrationPeriodEndDate):', new Date(item.attributes.RegistrationPeriodEndDate));
value = new Date() < new Date(item.attributes.RegistrationPeriodEndDate);
} else {
value = false;
Expand Down

0 comments on commit d624e63

Please sign in to comment.