chore(ux): 🚸 Improve deferReply message

Improved UX by writing a better deferReply message that looks good when a request takes time
This commit is contained in:
Axel Olausson Holtenäs 2022-12-04 19:12:35 +01:00
parent 0627d0ce31
commit 7320544592

View file

@ -19,9 +19,9 @@ export default async (interaction: BaseInteraction, ephemeral: boolean) => {
iconURL: embedConfig.footerIcon, iconURL: embedConfig.footerIcon,
}) })
.setTimestamp(new Date()) .setTimestamp(new Date())
.setTitle("Processing your request") .setTitle("⏳︱Your request are being processed")
.setColor(embedConfig.waitColor) .setColor(embedConfig.waitColor)
.setDescription("Please wait..."), .setDescription("This might take a while, please wait..."),
], ],
}); });
}; };