Error [in turbo.es2017] when trying to send text message (SMS)

When using the text message form and sending to our “Philmont 2026” custom mailing list, once I click the “Save” button, nothing happens. When I open my browser console, I see the following error:

turbo.es2017-esm.js:3368 Error: Form responses must redirect to another location
at _FormSubmission.requestSucceededWithResponse (turbo.es2017-esm.js:1162:21)
at FetchRequest.receive (turbo.es2017-esm.js:846:21)
at FetchRequest.perform (turbo.es2017-esm.js:823:25)

If nothing happens when you select Save it means the message is too long. Unfortunately there is no character counter to let you know. It has been requested however not implemented.

If you’re familiar with the browser console in the dev tools (F12), pasting this in there will give the user a rudimentary count:

window.document.getElementById(‘text_message_message’).addEventListener(“keypress”,function countChars(e){e.srcElement.previousElementSibling.innerHTML=‘Message (max length: ‘+this.value.length+’ of 128 chars)’; });