Skip to content

Commit

Permalink
🧵 Remove unused string
Browse files Browse the repository at this point in the history
  • Loading branch information
Maseshi committed May 3, 2024
1 parent dd9be08 commit 0dc0067
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions source/commands/developer/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ module.exports = {
// System
const systemManufacturer = data.system.manufacturer
const systemModel = data.system.model
const systemVirtual = data.system.virtual

// BIOS
const biosVendor = data.bios.vendor
Expand Down Expand Up @@ -156,7 +155,7 @@ module.exports = {
},
{
name: '• Node.js',
value: '```' + `v${process.version}` + '```',
value: '```' + process.version + '```',
inline: true,
},
{
Expand All @@ -182,16 +181,6 @@ module.exports = {
'```',
inline: true,
},
{
name: interaction.client.i18n.t('commands.system.info_virtual'),
value:
'```' +
(systemVirtual
? interaction.client.i18n.t('commands.system.yes')
: interaction.client.i18n.t('commands.system.no')) +
'```',
inline: true,
},
{
name: '• BIOS',
value:
Expand Down

0 comments on commit 0dc0067

Please sign in to comment.