diff --git a/apps/comments-ui/src/components/content/Content.tsx b/apps/comments-ui/src/components/content/Content.tsx index caf9810b63..ce665a1a55 100644 --- a/apps/comments-ui/src/components/content/Content.tsx +++ b/apps/comments-ui/src/components/content/Content.tsx @@ -37,6 +37,7 @@ const Content = () => { return ( <> +
{commentsElements}
@@ -46,7 +47,6 @@ const Content = () => { : null } - ); }; diff --git a/apps/comments-ui/test/e2e/pagination.test.ts b/apps/comments-ui/test/e2e/pagination.test.ts index 8ef7237e52..59fa7d7e19 100644 --- a/apps/comments-ui/test/e2e/pagination.test.ts +++ b/apps/comments-ui/test/e2e/pagination.test.ts @@ -2,7 +2,7 @@ import {MockedApi, addMultipleComments, initialize} from '../utils/e2e'; import {expect, test} from '@playwright/test'; test.describe('Pagination', async () => { - test('Shows pagination button at bottom if more than 20 comments', async ({page}) => { + test('Shows pagination button at top if more than 20 comments', async ({page}) => { const mockedApi = new MockedApi({}); addMultipleComments(mockedApi, 21);