diff --git a/src/commands/playground/util.rs b/src/commands/playground/util.rs index fab7286..c71e081 100644 --- a/src/commands/playground/util.rs +++ b/src/commands/playground/util.rs @@ -284,11 +284,9 @@ pub async fn send_reply( ctx.rerun().await?; } else { // If timed out, just remove the button - // Errors are ignored in case the reply was deleted - let _ = response - // TODO: Add code to remove button - .edit(ctx, poise::CreateReply::default()) - .await; + response + .edit(ctx, |create_reply| create_reply.components(|c| c)) + .await?; } Ok(())