From 19243939a116cf16c067432edcf8341ac377e971 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 16 Oct 2020 10:00:58 -0400 Subject: [PATCH] Remove console.log --- docs/getting-started/changelog.md | 4 ++++ src/utilities/modal.ts | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/getting-started/changelog.md b/docs/getting-started/changelog.md index 6591d521d..71b2e63ff 100644 --- a/docs/getting-started/changelog.md +++ b/docs/getting-started/changelog.md @@ -6,6 +6,10 @@ Components with the Experimental badge _During the beta period, these restrictions may be relaxed in the event of a mission-critical bug._ 🐛 +## Next + +- Removed `console.log` from modal utility + ## 2.0.0-beta.21 - Added `label` slot to `sl-input`, `sl-select`, and `sl-textarea` [#248](https://github.com/shoelace-style/shoelace/issues/248) diff --git a/src/utilities/modal.ts b/src/utilities/modal.ts index 3ce07d2ba..1233a28af 100644 --- a/src/utilities/modal.ts +++ b/src/utilities/modal.ts @@ -30,7 +30,6 @@ export default class Modal { } handleFocusIn(event: Event) { - console.log(this.element); const target = event.target as HTMLElement; const tagName = this.element.tagName.toLowerCase();