diff --git a/src/Discord.Net.Interactions/Builders/Parameters/ComponentCommandParameterBuilder.cs b/src/Discord.Net.Interactions/Builders/Parameters/ComponentCommandParameterBuilder.cs
index 9bdf8539e..b59151c92 100644
--- a/src/Discord.Net.Interactions/Builders/Parameters/ComponentCommandParameterBuilder.cs
+++ b/src/Discord.Net.Interactions/Builders/Parameters/ComponentCommandParameterBuilder.cs
@@ -43,7 +43,7 @@ namespace Discord.Interactions.Builders
///
/// The builder instance.
///
- public ComponentCommandParameterBuilder SetParameterType(Type type, IServiceProvider services = null)
+ public ComponentCommandParameterBuilder SetParameterType(Type type, IServiceProvider services)
{
base.SetParameterType(type);
diff --git a/src/Discord.Net.Interactions/Info/Commands/AutocompleteCommandInfo.cs b/src/Discord.Net.Interactions/Info/Commands/AutocompleteCommandInfo.cs
index 712b058a3..9e30c55f4 100644
--- a/src/Discord.Net.Interactions/Info/Commands/AutocompleteCommandInfo.cs
+++ b/src/Discord.Net.Interactions/Info/Commands/AutocompleteCommandInfo.cs
@@ -41,14 +41,7 @@ namespace Discord.Interactions
if (context.Interaction is not IAutocompleteInteraction)
return ExecuteResult.FromError(InteractionCommandError.ParseFailed, $"Provided {nameof(IInteractionContext)} doesn't belong to a Autocomplete Interaction");
- try
- {
- return await RunAsync(context, Array.Empty