From 229b04a76123580cd3ecf0dbce0af9dde472b7e6 Mon Sep 17 00:00:00 2001 From: Matthew Soyka Date: Mon, 3 Feb 2025 01:26:36 -0600 Subject: [PATCH] Update getting-started.mdx (#2402) Co-authored-by: William Bergamin --- docs/content/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/getting-started.mdx b/docs/content/getting-started.mdx index 6b414262f..f628b5161 100644 --- a/docs/content/getting-started.mdx +++ b/docs/content/getting-started.mdx @@ -475,7 +475,7 @@ app.action('button_click', async ({ body, ack, say }) => { -You can see that we used `app.action()` to listen for the `action_id` that we named `sample_button`. If you restart your app and click the button, you'll see a new message from your app that says you clicked the button. +You can see that we used `app.action()` to listen for the `action_id` that we named `button_click`. If you restart your app and click the button, you'll see a new message from your app that says you clicked the button. ---