@@ -7,16 +7,16 @@ import {
77 type ChatInputCommandInteraction ,
88 Events ,
99 type Interaction ,
10- InteractionEditReplyOptions ,
11- InteractionReplyOptions ,
10+ type InteractionEditReplyOptions ,
11+ type InteractionReplyOptions ,
12+ italic ,
1213 type MessageContextMenuCommandInteraction ,
1314 MessageFlags ,
1415 ModalBuilder ,
1516 type ModalSubmitInteraction ,
1617 type RepliableInteraction ,
1718 TextInputBuilder ,
1819 TextInputStyle ,
19- italic ,
2020} from "discord.js" ;
2121
2222import type { DatadropClient } from "../datadrop.js" ;
@@ -121,7 +121,9 @@ async function isAlreadyVerified(
121121 flags : MessageFlags . Ephemeral ,
122122 } ;
123123 if ( interaction . deferred ) {
124- await interaction . editReply ( replyOptions as InteractionEditReplyOptions ) ;
124+ await interaction . editReply (
125+ replyOptions as InteractionEditReplyOptions ,
126+ ) ;
125127 } else if ( interaction . replied ) {
126128 await interaction . followUp ( replyOptions ) ;
127129 } else {
@@ -226,7 +228,7 @@ async function showVerificationButton(
226228 . setCustomId ( `lacb${ interaction . user . id } ` )
227229 . setDisabled (
228230 content . includes ( client . errorMessage ) ||
229- content . includes ( client . activeAccountMessage ) ,
231+ content . includes ( client . activeAccountMessage ) ,
230232 ) ;
231233 const buttonComponent = new ActionRowBuilder < ButtonBuilder > ( ) . addComponents (
232234 linkAccountButton ,
0 commit comments