refactor(events/client): adding the tsconfig + eslint correction

This commit is contained in:
Raphael 2025-10-14 00:18:43 +02:00 committed by Raphaël
parent 5db6c9ee3e
commit d14c847c4b
4 changed files with 14 additions and 17 deletions

View file

@ -1,5 +1,5 @@
import { Events, Guild, EmbedBuilder, channelMention } from 'discord.js';
import { prisma } from '../../lib/prisma.ts';
import { prisma } from '@lib/prisma';
export default {
name: Events.GuildUpdate,
@ -44,7 +44,7 @@ export default {
.setFooter({
text: guildData.footer,
})
.setDescription(`${toPrint}`);
.setDescription(toPrint);
logChannel.send({
embeds: [
toRep,