Skip to content

Commit

Permalink
comment out console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
thitu committed Oct 18, 2023
1 parent 467a02f commit 0c43ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class FidoPasskeyDetailsCard extends LitElement {
static styles = [sharedStyles, componentStyle]

render(): TemplateResult {
console.log(this.passkeyDetails)
// console.log(this.passkeyDetails)
return html`
<div class="auth-card">
<div class="auth-card-header">
Expand Down
2 changes: 1 addition & 1 deletion src/components/otp/code-input.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const Enabled: StoryObj = {
document.addEventListener(
"code-changed",
(e) => {
console.log('Auth Code Changed...', e.detail)
// console.log('Auth Code Changed...', e.detail)
},
false,
);
Expand Down

0 comments on commit 0c43ecc

Please sign in to comment.