Skip to content

Commit

Permalink
chore: lint'
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyvy-vi committed Aug 2, 2023
1 parent a4e9aec commit 512a271
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/discord-bot/src/utils/dmTargets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ const sendDMs = async (
host?: string
): Promise<void> => {
logger.debug(
`Sending DMs to users: ${users
?.map((u) => `${u._id} - ${u.username}`)
.join(', ')} with message: ${JSON.stringify(message.toJSON())}`
`Sending DMs to users: ${
users?.map((u) => `${u._id} - ${u.username}`).join(', ') || 'undefined'
} with message: ${JSON.stringify(message.toJSON())}`
);

const successful = [];
Expand Down

0 comments on commit 512a271

Please sign in to comment.