Added dprint and formatted file to it

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2024-09-06 22:57:15 +02:00
parent 55e1cf7cdf
commit f389209e21
106 changed files with 398 additions and 395 deletions

View File

@@ -1,7 +1,7 @@
import { EmbedBuilder, ActionRowBuilder, ButtonBuilder, ButtonStyle, Message, GuildMember } from "discord.js"
import { embedColor } from "config/options.js"
import guildapp from "schemas/guildAppTag.js"
import { ActionRowBuilder, ButtonBuilder, ButtonStyle, EmbedBuilder, GuildMember, Message } from "discord.js"
import { IModal } from "interfaces"
import guildapp from "schemas/guildAppTag.js"
export default {
name: "denyreasonbox",
@@ -47,8 +47,9 @@ export default {
}
const dmMessage = new EmbedBuilder()
.setDescription("Your application for the Illegitimate guild has been denied\n" +
"**Reason:** `" + reason + "`"
.setDescription(
"Your application for the Illegitimate guild has been denied\n" +
"**Reason:** `" + reason + "`"
)
.setColor(embedColor)
@@ -58,8 +59,9 @@ export default {
const responseEmbed = new EmbedBuilder()
.setTitle("Application Denied")
.setDescription("The application has been denied by <@" + interaction.user.id + ">.\n" +
"**Reason:** `" + reason + "`"
.setDescription(
"The application has been denied by <@" + interaction.user.id + ">.\n" +
"**Reason:** `" + reason + "`"
)
.setColor(embedColor)
.setThumbnail(guild.iconURL() || "")