diff --git a/src/components/Disqus/Disqus.jsx b/src/components/Disqus/Disqus.jsx
index 52d73df..d7a58be 100644
--- a/src/components/Disqus/Disqus.jsx
+++ b/src/components/Disqus/Disqus.jsx
@@ -19,7 +19,7 @@ class Disqus extends Component {
this.setState({ toasts });
}
render() {
- const { postNode, shortName, url:siteUrl } = this.props;
+ const { postNode, shortName, url: siteUrl } = this.props;
const post = postNode.frontmatter;
const url = siteUrl + postNode.fields.slug;
return (
diff --git a/src/components/PostTemplateDetails/index.jsx b/src/components/PostTemplateDetails/index.jsx
index a1c0101..cdf18a9 100644
--- a/src/components/PostTemplateDetails/index.jsx
+++ b/src/components/PostTemplateDetails/index.jsx
@@ -32,7 +32,7 @@ class PostTemplateDetails extends React.Component {
const commentsBlock = (
-
+
);
diff --git a/src/components/Sidebar/index.jsx b/src/components/Sidebar/index.jsx
index d11a6bb..cba0f3d 100644
--- a/src/components/Sidebar/index.jsx
+++ b/src/components/Sidebar/index.jsx
@@ -78,4 +78,4 @@ export const conponentQuery = graphql`
vk
}
}
-`;
\ No newline at end of file
+`;
diff --git a/src/templates/category-template.jsx b/src/templates/category-template.jsx
index ca05402..668d120 100644
--- a/src/templates/category-template.jsx
+++ b/src/templates/category-template.jsx
@@ -7,7 +7,7 @@ class CategoryTemplate extends React.Component {
render() {
const title = this.props.data.site.siteMetadata.title;
const category = this.props.pathContext.category;
- const posts = this.props.data.allMarkdownRemark.edges
+ const posts = this.props.data.allMarkdownRemark.edges;
return (
diff --git a/src/templates/tag-template.jsx b/src/templates/tag-template.jsx
index 979f108..50c51ed 100644
--- a/src/templates/tag-template.jsx
+++ b/src/templates/tag-template.jsx
@@ -12,7 +12,7 @@ class TagTemplate extends React.Component {
-
+
);
}