Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions cogs/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,8 +634,7 @@ async def new_feature(self, interaction: discord.Interaction, feature: str):

# Confirm to user
await interaction.response.send_message(
"✅ Your feature request has been submitted! Our team will review it soon.\n\n"
"**Want to discuss your idea or see other requests?**\n",
"✅ Your feature request has been submitted! Our team will review it soon.\n\n",
ephemeral=True,
)

Expand Down Expand Up @@ -709,10 +708,7 @@ async def feedback_command(

# Confirm to user with different messages based on rating
if rating >= 4:
message = (
"✅ Thank you for your positive feedback! We're thrilled you're enjoying the bot! 🎉\n\n"
"**Help us grow:**\n"
)
message = "✅ Thank you for your positive feedback! We're thrilled you're enjoying the bot! 🎉\n\n"
else:
message = "✅ Thank you for your feedback! We appreciate your honesty and will work on improvements.\n\n"

Expand Down
Loading