formatting fix

pull/29/head
Matthew 2020-10-11 13:16:00 -04:00
parent b655262a44
commit a0f6fa91d7
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 2 additions and 1 deletions

View File

@ -160,7 +160,8 @@ export default class Score extends Command {
let desc = '__**Hard Inquiries**__\n*These inquiries will fall off your report within 3 months, try to keep your hard inquiries to a minimum. If you want to file a dispute, please DM Ramirez.*\n\n'; let desc = '__**Hard Inquiries**__\n*These inquiries will fall off your report within 3 months, try to keep your hard inquiries to a minimum. If you want to file a dispute, please DM Ramirez.*\n\n';
score.inquiries.forEach((inq) => { score.inquiries.forEach((inq) => {
const testDate = (new Date(new Date(inq.date).setHours(2190))); const testDate = (new Date(new Date(inq.date).setHours(2190)));
if (testDate > new Date()) desc += `**Department/Service:** ${inq.name}\n**Reason:** ${inq.reason}\n**Date:** ${inq.date.toLocaleString('en-us')} ET\n\n`; // eslint-disable-next-line no-useless-escape
if (testDate > new Date()) desc += `**Department/Service:** ${inq.name}\n**Reason:** ${inq.reason}\n**Date:** ${inq.date.toLocaleString('en-us')} ET\n\n`.replace('*', '\*');
}); });
embed.setDescription(desc); embed.setDescription(desc);
} }