diff --git a/src/posts/posts.service.ts b/src/posts/posts.service.ts
index 34e32b5764002064aefb37494986e5e856df9995..e0480d7212fb79c1c78513e6b8139ce8aebd7fa5 100644
--- a/src/posts/posts.service.ts
+++ b/src/posts/posts.service.ts
@@ -26,7 +26,7 @@ export class PostsService {
   /**
    * Get all tags with admin endpoint, including unused ones
    */
-  public getTags(): Promise<Tag[]> {
+  public async getTags(): Promise<Tag[]> {
     return this.api.tags.browse({ limit: 'all' });
   }