diff --git a/VERSION b/VERSION index 0bd6cbc..1eb56ea 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.28.2 +2.28.3 diff --git a/views/custom_commands.py b/views/custom_commands.py index 5033504..924df63 100644 --- a/views/custom_commands.py +++ b/views/custom_commands.py @@ -607,14 +607,14 @@ class SingleCommandManagementView(BaseView): title="Delete Failed", description=f"Failed to delete command: {e}" ) - await interaction.edit_original_response(embed=embed, view=None) + await interaction.edit_original_response(content=None, embed=embed, view=None) else: # User cancelled embed = EmbedTemplate.info( title="Deletion Cancelled", description=f"The command `/cc {self.command.name}` was not deleted." ) - await interaction.edit_original_response(embed=embed, view=None) + await interaction.edit_original_response(content=None, embed=embed, view=None) class CustomCommandListView(PaginationView):