diff --git a/modules/comments/api/getPollComments.ts b/modules/comments/api/getPollComments.ts index 1800e17f5..eb8baf3a0 100644 --- a/modules/comments/api/getPollComments.ts +++ b/modules/comments/api/getPollComments.ts @@ -40,6 +40,6 @@ export async function getPollComments( }); const response = await Promise.all(promises); - - return response; + + return response as PollCommentsAPIResponseItem[]; }