Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamlinerm committed Oct 30, 2023
1 parent a06a3d1 commit 193e47b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chrome/popup/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function capitalizeFirstLetter(str) {
function setCheckboxesOfService(service) {
Object.keys(settings[service]).forEach((key) => {
const buttons = document.querySelectorAll("#" + service + capitalizeFirstLetter(key));
console.log(service + capitalizeFirstLetter(key), buttons);
// console.log(service + capitalizeFirstLetter(key), buttons);
buttons.forEach((button) => {
button.checked = settings[service][key];
});
Expand Down

0 comments on commit 193e47b

Please sign in to comment.