diff --git a/src/Discord.Net.Interactions/Extensions/IDiscordInteractionExtensions.cs b/src/Discord.Net.Interactions/Extensions/IDiscordInteractionExtensions.cs
index ebb744533..8f0987661 100644
--- a/src/Discord.Net.Interactions/Extensions/IDiscordInteractionExtensions.cs
+++ b/src/Discord.Net.Interactions/Extensions/IDiscordInteractionExtensions.cs
@@ -13,7 +13,7 @@ namespace Discord.Interactions
/// Delegate that can be used to modify the modal.
/// The request options for this request.
/// A task that represents the asynchronous operation of responding to the interaction.
- public static async Task RespondWithModalAsync(this IDiscordInteraction interaction, string customId, Action modifyModal = null, RequestOptions options = null)
+ public static async Task RespondWithModalAsync(this IDiscordInteraction interaction, string customId, RequestOptions options = null, Action modifyModal = null)
where T : class, IModal
{
if (!ModalUtils.TryGet(out var modalInfo))