Skip to content

Commit

Permalink
Update add_items_to_object_MOD.js
Browse files Browse the repository at this point in the history
can we fix this stupid prettier rule that makes template literals look like a mess??
  • Loading branch information
TCMine committed Sep 5, 2024
1 parent 8b51b85 commit 87da34b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion actions/add_items_to_object_MOD.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ module.exports = {

subtitle(data, presets) {
const storage = presets.variables;
return `Add ${Object.entries(data.entriess).length} item${Object.entries(data.entriess).length === 1 ? '' : 's'} entries to ${storage[parseInt(data.storage, 10)]} (${data.varName})`;
return `Add ${Object.entries(data.entriess).length} item${
Object.entries(data.entriess).length === 1 ? '' : 's'
} entries to ${storage[parseInt(data.storage, 10)]} (${data.varName})`;
},

// ---------------------------------------------------------------------
Expand Down

0 comments on commit 87da34b

Please sign in to comment.