Skip to content

Commit

Permalink
fixup linting
Browse files Browse the repository at this point in the history
  • Loading branch information
RedSparr0w committed Jan 7, 2025
1 parent 535a09a commit d95be41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions slash_commands/dailychain.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const {
DailyDeal,
UndergroundItem,
dateToString,
gameVersion,
UndergroundItemValueType,
} = require('../helpers.js');

Expand Down Expand Up @@ -67,7 +66,7 @@ module.exports = {
const embed = new EmbedBuilder()
.setTitle(`(Depreciated) Upcoming Daily Deals (${maxSlots} slots - ${days} days)`)
.setColor('#3498db')
.setFooter({ text: `Daily deals are depreciated as of v0.10.21` });
.setFooter({ text: 'Daily deals are depreciated as of v0.10.21' });

// Calculate name padding
const allItemsLength = UndergroundItem.list.map(item => item.name.length);
Expand Down
3 changes: 1 addition & 2 deletions slash_commands/dailydeal.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const {
DailyDeal,
UndergroundItem,
dateToString,
gameVersion,
} = require('../helpers.js');

module.exports = {
Expand Down Expand Up @@ -34,7 +33,7 @@ module.exports = {
const embed = new EmbedBuilder()
.setTitle('(Depreciated) Upcoming Daily Deals')
.setColor('#3498db')
.setFooter({ text: `Daily deals are depreciated as of v0.10.21` });
.setFooter({ text: 'Daily deals are depreciated as of v0.10.21' });

// Calculate name padding
const allItemsLength = UndergroundItem.list.map(item => item.name.length);
Expand Down

0 comments on commit d95be41

Please sign in to comment.