Skip to content

Commit

Permalink
fix: 🐛 removed console.log lines
Browse files Browse the repository at this point in the history
  • Loading branch information
davids-ensemble committed May 27, 2024
1 parent f347939 commit c90212a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/contextual-help/contextual-help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export class ContextualHelp {
popover!: HTMLDivElement;

handlePopoverToggle = async (e: ToggleEvent) => {
console.log(e);
const popover = e.target as HTMLDivElement;
this.isOpen = e.newState === 'open';
if (e.newState === 'open') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ export class TJUpdateBanner {
isButtonDisabled = !this.scriptVersion || new Date(this.scriptVersion) < new Date('2024-05-18');

async componentWillLoad() {
console.log('scriptVersion', this.scriptVersion);
console.log(this.isButtonDisabled);
if (!localStorage.getItem('tj_version')) {
localStorage.setItem('tj_version', version);
}
Expand Down

0 comments on commit c90212a

Please sign in to comment.