diff --git a/src/Server.UI/Pages/Participants/Components/CaseNotes.razor b/src/Server.UI/Pages/Participants/Components/CaseNotes.razor
index 84f3b635..af674040 100644
--- a/src/Server.UI/Pages/Participants/Components/CaseNotes.razor
+++ b/src/Server.UI/Pages/Participants/Components/CaseNotes.razor
@@ -9,9 +9,12 @@
{
-
-
-
+
@foreach(var note in _notes.OrderByDescending(x => x.Created))
{
@@ -50,18 +53,6 @@
}
-
-
- @if(_notes.Length is 0)
- {
- Nothing to see here. Why not add a note yourself?
- }
- else
- {
- You're all caught up!
- }
-
-
}
@code {