show when stats are requested

This commit is contained in:
VinceC
2025-01-01 10:05:05 -06:00
parent 1ad3a11bd3
commit 75a3b3b52d
2 changed files with 5 additions and 7 deletions

View File

@@ -152,7 +152,6 @@ class CommandHandler {
if (!userData || !userData.success) {
await interaction.editReply({
content: '❌ User not found or an error occurred while fetching data.',
ephemeral: true
});
return;
}
@@ -167,7 +166,6 @@ class CommandHandler {
await interaction.editReply({
embeds: [embed],
components: [row],
ephemeral: true
});
} catch (error) {
this.logger.error('Error in handleFindUser:', {
@@ -188,7 +186,6 @@ class CommandHandler {
if (!userData || !userData.success) {
await interaction.editReply({
content: '❌ User not found or an error occurred while fetching data.',
ephemeral: true
});
return;
}
@@ -209,7 +206,6 @@ class CommandHandler {
await interaction.editReply({
embeds: [embed],
components: [row],
ephemeral: true
});
} catch (error) {
this.logger.error('Error in handleMatchHistory:', {