about summary refs log tree commit diff
path: root/components/Posts/PostList/parentMixin.js
diff options
context:
space:
mode:
Diffstat (limited to 'components/Posts/PostList/parentMixin.js')
-rw-r--r--components/Posts/PostList/parentMixin.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/Posts/PostList/parentMixin.js b/components/Posts/PostList/parentMixin.js
index e5b06ed..801d51c 100644
--- a/components/Posts/PostList/parentMixin.js
+++ b/components/Posts/PostList/parentMixin.js
@@ -3,7 +3,7 @@ import { getPosts } from './index'
 export default {
   async asyncData() {
     return {
-      posts: await getPosts()
+      posts: await getPosts(),
     }
-  }
+  },
 }