I'm trying to make an invisible response to a select menu interaction without the negative side effect of deferring.
A user will trigger a long chain of actions with the selection in a selectmenucomponent, after which a thread will be made for them. I can defer early on in the process to avoid the message that 'this interaction has failed' even though it hasn't, but that stops the selectmenu from going back to its placeholder state for that user.
I can also respond, but I don't really want to send a message, even ephemerally, because it's supposed to be a channel with only the selectmenu in it. So far my best option is making a message in the locked channel that a thread is being made and then delete it, but since it's a personal thread, everyone will see a change blip in the channel. A close second bad option would be an ephemeral response that I can't even delete.
Is there any proper alternative to letting the user's client know the interaction has been handled without Defer or Response? I thought " await Task.CompletedTask;" might do the trick, but that just gets me back to the interaction failed message