Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
salvan13 committed Jun 14, 2024
1 parent a59e28b commit 553d765
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/convertColors.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const fn = (_root, params) => {
return {
element: {
enter: (node) => {
if (node.name === "mask") {
if (node.name === 'mask') {
maskCounter++;
}
for (const [name, value] of Object.entries(node.attributes)) {
Expand Down Expand Up @@ -154,7 +154,7 @@ export const fn = (_root, params) => {
}
},
exit: (node) => {
if (node.name === "mask") {
if (node.name === 'mask') {
maskCounter--;
}
},
Expand Down

0 comments on commit 553d765

Please sign in to comment.