Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Jun 25, 2024
1 parent ebcfc5d commit 9fde187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/walkthrough/walkthrough.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default class Walkthrough extends HTMLElement {
const title = card.querySelector("span").innerHTML;
const text = card.querySelector("p").innerHTML;
const icon = card.querySelector("i").textContent;
const isActiveClass = idx === this.index ? ' active' : '';
const isActiveClass = idx === this.index ? " active" : "";
return `
<div class="card${isActiveClass}" data-idx="${idx}">
Expand Down

0 comments on commit 9fde187

Please sign in to comment.