diff --git a/CHANGELOG.md b/CHANGELOG.md index d8da48265..2d3c0e50c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ Unreleased ---------- +* Fixes typo in webhook generator [#1704](https://github.com/Shopify/shopify_app/pull/1704) 21.6.0 (July 11, 2023) ---------- diff --git a/lib/generators/shopify_app/install/templates/shopify_app.rb.tt b/lib/generators/shopify_app/install/templates/shopify_app.rb.tt index 5dae1b65e..176477f7a 100644 --- a/lib/generators/shopify_app/install/templates/shopify_app.rb.tt +++ b/lib/generators/shopify_app/install/templates/shopify_app.rb.tt @@ -12,7 +12,7 @@ ShopifyApp.configure do |config| config.webhooks = [ { topic: "app/uninstalled", address: "webhooks/app_uninstalled"}, { topic: "customers/data_request", address: "webhooks/customers_data_request" }, - { topic: "customer/redact", address: "webhooks/customers_redact"}, + { topic: "customers/redact", address: "webhooks/customers_redact"}, { topic: "shop/redact", address: "webhooks/shop_redact"} ]