diff --git a/app/views/collections/edit.html.erb b/app/views/collections/edit.html.erb
index 6d3b50f50..1b87e389a 100644
--- a/app/views/collections/edit.html.erb
+++ b/app/views/collections/edit.html.erb
@@ -21,7 +21,10 @@
Choose who can access this Collection
- <%= form_with model: @collection, class: "display-contents", data: { controller: "form collections-form", collections_form_self_removal_prompt_message_value: "You're about to remove yourself from this collection. Other members will need to add you back. Are you sure?", action: "turbo:submit-start->collections-form#submitWithWarning" } do |form| %>
+ <%= form_with model: @collection, class: "display-contents", data: {
+ controller: "form collections-form",
+ collections_form_self_removal_prompt_message_value: "You’re about to lose access to this collection. To regain access, another user will need to add you back. Are you sure you want to continue?",
+ action: "turbo:submit-start->collections-form#submitWithWarning" } do |form| %>
<%= render "collections/edit/name", form: form %>
<%= render "collections/edit/users", collection: @collection, selected_users: @selected_users, unselected_users: @unselected_users, form: form %>