diff --git a/plugins/talk-plugin-featured/client/components/TabPane.js b/plugins/talk-plugin-featured/client/components/TabPane.js index 7e6f5834b..54ac013e6 100644 --- a/plugins/talk-plugin-featured/client/components/TabPane.js +++ b/plugins/talk-plugin-featured/client/components/TabPane.js @@ -3,12 +3,13 @@ import React from 'react'; export default ({asset: {recentComments}}) => (
{recentComments.map((comment) => ( -

+

{comment.user.username}
{comment.body}
-

+
+
))}
);