fix(dashboard/events): typo in events list empty state

This commit is contained in:
Marc Köhler
2024-05-28 11:19:49 +08:00
committed by Carl-Gerhard Lindesvärd
parent 21b2118877
commit 1091b25ed9

View File

@@ -49,7 +49,7 @@ function EventList({ data, count }: EventListProps) {
{filters.length ? (
<p>Could not find any events with your filter</p>
) : (
<p>We have not recieved any events yet</p>
<p>We have not received any events yet</p>
)}
</>
)}