Skip to content

Commit

Permalink
fix: erro de inglês
Browse files Browse the repository at this point in the history
números ordinários
  • Loading branch information
controlado committed Jul 24, 2023
1 parent 4900be8 commit 2c59d18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auto-champion-select",
"version": "1.1.2",
"version": "1.1.3",
"description": "Pick or ban automatically! 🐧",
"author": "balaclava",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ const championSelect = new ChampionSelect();

const pickCheckbox = new Checkbox("Pick", "controladoPick");
const firstPlayableChampionsDropdown = new Dropdown("1st pick option", "controladoPick", 0, getPlayableChampions);
const secondPlayableChampionsDropdown = new Dropdown("2st pick option", "controladoPick", 1, getPlayableChampions);
const secondPlayableChampionsDropdown = new Dropdown("2nd pick option", "controladoPick", 1, getPlayableChampions);

const banCheckbox = new Checkbox("Ban", "controladoBan");
const firstAllChampionsDropdown = new Dropdown("1st ban option", "controladoBan", 0, getAllChampions);
const secondAllChampionsDropdown = new Dropdown("2st ban option", "controladoBan", 1, getAllChampions);
const secondAllChampionsDropdown = new Dropdown("2nd ban option", "controladoBan", 1, getAllChampions);

window.addEventListener("load", async () => {
let socialContainer = getSocialContainer();
Expand Down

0 comments on commit 2c59d18

Please sign in to comment.