diff --git a/plugins/talk-plugin-avatar/client/components/UserAvatar.js b/plugins/talk-plugin-avatar/client/components/UserAvatar.js
index ae1ab30f9..a87669540 100644
--- a/plugins/talk-plugin-avatar/client/components/UserAvatar.js
+++ b/plugins/talk-plugin-avatar/client/components/UserAvatar.js
@@ -3,6 +3,6 @@ import styles from './styles.css';
import avatarPlaceholder from '../assets/avatar-placeholder.png';
const UserAvatar = ({comment: {user}}) =>
-
+
;
export default UserAvatar;
diff --git a/plugins/talk-plugin-avatar/client/index.js b/plugins/talk-plugin-avatar/client/index.js
index 922e464b8..a706a41d0 100644
--- a/plugins/talk-plugin-avatar/client/index.js
+++ b/plugins/talk-plugin-avatar/client/index.js
@@ -4,4 +4,4 @@ export default {
slots: {
commentAvatar: [UserAvatar]
}
-}
\ No newline at end of file
+};
diff --git a/plugins/talk-plugin-avatar/index.js b/plugins/talk-plugin-avatar/index.js
index b91a58835..fca0aafee 100644
--- a/plugins/talk-plugin-avatar/index.js
+++ b/plugins/talk-plugin-avatar/index.js
@@ -47,7 +47,6 @@ module.exports = {
// ...
// }
-
// Extract the data from the payload.
let {
id,
@@ -69,7 +68,7 @@ module.exports = {
// Respond with a `202 Accepted` to indicate that we were able to process
// the update.
- res.status(202).end()
+ res.status(202).end();
});
}
-};
\ No newline at end of file
+};