diff --git a/bookwyrm/static/js/bookwyrm.js b/bookwyrm/static/js/bookwyrm.js
index 5bf845a4e..66fd5a615 100644
--- a/bookwyrm/static/js/bookwyrm.js
+++ b/bookwyrm/static/js/bookwyrm.js
@@ -134,8 +134,10 @@ let BookWyrm = new class {
let trigger = event.currentTarget;
let hidden = trigger.closest('.hidden-form').querySelectorAll('.is-hidden')[0];
- // if the form has already been revealed, there is no '.is-hidden' element
- // so this doesn't really work as a toggle
+ /**
+ * if the form has already been revealed, there is no '.is-hidden' element
+ * so this doesn't really work as a toggle
+ */
if (hidden) {
this.addRemoveClass(hidden, 'is-hidden', !hidden);
diff --git a/bookwyrm/templates/groups/find_users.html b/bookwyrm/templates/groups/find_users.html
index ec890a93d..57d4277c1 100644
--- a/bookwyrm/templates/groups/find_users.html
+++ b/bookwyrm/templates/groups/find_users.html
@@ -5,4 +5,4 @@
Add new members!
{% include 'groups/suggested_users.html' with suggested_users=suggested_users query=query %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/bookwyrm/templates/groups/group.html b/bookwyrm/templates/groups/group.html
index 408f1f945..03ccae18f 100644
--- a/bookwyrm/templates/groups/group.html
+++ b/bookwyrm/templates/groups/group.html
@@ -64,21 +64,21 @@
{% if group.user == request.user %}
-