diff --git a/bookwyrm/templates/lists/list.html b/bookwyrm/templates/lists/list.html
index a4c12f46..6dfea8a6 100644
--- a/bookwyrm/templates/lists/list.html
+++ b/bookwyrm/templates/lists/list.html
@@ -84,9 +84,7 @@
{{ username }} says:
{% endblocktrans %}
-
- {{ item.notes|to_markdown|safe }}
-
+ {{ item.notes|to_markdown|safe }}
{% if item.user == request.user %}
diff --git a/bookwyrm/tests/views/lists/test_list.py b/bookwyrm/tests/views/lists/test_list.py
index f29288c0..bcec0822 100644
--- a/bookwyrm/tests/views/lists/test_list.py
+++ b/bookwyrm/tests/views/lists/test_list.py
@@ -179,6 +179,7 @@ class ListViews(TestCase):
book_list=self.list,
user=self.local_user,
book=self.book,
+ notes="hi hello",
approved=True,
order=1,
)