Skip to content

Commit

Permalink
🐛 ACTUALLY fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed May 14, 2024
1 parent bd350af commit 942ba1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/cardfoldr.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const extractCards = async () => {

const cardInfo = document.createElement('div');
cardInfo.classList = "card-info";
cardInfo.textContent = `Card ${count}/${pageSelection.length * countX * countY}`;
cardInfo.textContent = `Card ${count}/${expectedTotal}`;

const cardElement = document.createElement('div');
cardElement.id = `card-${count}`;
Expand Down

0 comments on commit 942ba1b

Please sign in to comment.