+ {comments.length === 0 ? (
+
+
+
+ {t('explore-map.comment.no-comments', 'No comments yet. Be the first to comment!')}
+
+
+ ) : (
+ comments.map(({ id, data }) => (
+
+
+
{data.text}
+
+ {data.username}
+ {data.timestamp && (
+
+ {formatTimestamp(data.timestamp)}
+
+ )}
+
+
+
+ {data.username === currentUsername && (
+
+
+ ))
+ )}
+
+