Skip to content

Commit

Permalink
fix(ld-sr-live): remove console log calls
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdiakur committed Aug 2, 2021
1 parent d8150e5 commit 64d4a9a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/liquid/components/ld-sr-live/ld-sr-live.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export class LdSrLive {
passive: true,
})
handleInfo(event: CustomEvent<string>) {
console.log('Received the custom ldSrLiveInfo event: ', event.detail)
// MAGIC: the second “pseudo-empty” string contains a zero width space, which is required
// in order to repeat an alert message, without altering the printed message displayed on the screen.
this.infoSuffix = this.infoSuffix ? '' : '​'
Expand All @@ -34,7 +33,6 @@ export class LdSrLive {
passive: true,
})
handleAlert(event: CustomEvent<string>) {
console.log('Received the custom ldSrLiveAlert event: ', event.detail)
// MAGIC: the second “pseudo-empty” string contains a zero width space, which is required
// in order to repeat an alert message, without altering the printed message displayed on the screen.
this.alertSuffix = this.alertSuffix ? '' : '​'
Expand Down

0 comments on commit 64d4a9a

Please sign in to comment.