From 24d0511246ec6f07053b36125b7d409e2217f182 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Fri, 26 Jun 2026 17:28:53 -0400 Subject: [PATCH] Fix copy-paste bug in contact form error message The alert string referenced `apiUmbrellaSignupOptions.apiKey` but the code actually reads from `apiUmbrellaContactOptions` (line 8). Updated the error message to match the correct options object name. --- assets/javascripts/contact.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/javascripts/contact.js b/assets/javascripts/contact.js index 2e93d6f..6e9887e 100644 --- a/assets/javascripts/contact.js +++ b/assets/javascripts/contact.js @@ -9,7 +9,7 @@ const options = { }; if (!options.apiKey) { - alert("apiUmbrellaSignupOptions.apiKey must be set"); + alert("apiUmbrellaContactOptions.apiKey must be set"); } const modalEl = document.getElementById("alert_modal");