Skip to content

Commit

Permalink
Lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoferlund committed Jun 30, 2023
1 parent 8edc89d commit 1220b5b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/api/openapi.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/discord-bot/src/handlers/praise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const praiseHandler: CommandHandler = async (
);

if (giverAccount && giverAccount.user) {
await collector.stop();
collector.stop();
await givePraise(
interaction,
guild,
Expand Down
4 changes: 2 additions & 2 deletions packages/discord-bot/src/utils/embeds/praiseEmbeds.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { User, EmbedBuilder, Role, Embed } from 'discord.js';
import { User, EmbedBuilder, Role } from 'discord.js';
import { renderMessage } from '../renderMessage';

export const praiseRoleError = async (
Expand Down Expand Up @@ -43,6 +43,6 @@ export const praiseWelcomeEmbed = (
return new EmbedBuilder()
.setTitle('Welcome to Praise!')
.setDescription(
`✅ Praise community created\n✅ Praise bot added to Discord\n✅ Praise bot linked to community\n`
'✅ Praise community created\n✅ Praise bot added to Discord\n✅ Praise bot linked to community\n'
);
};

0 comments on commit 1220b5b

Please sign in to comment.