diff --git a/frontend/apps/remark42/app/components/profile/profile.spec.tsx b/frontend/apps/remark42/app/components/profile/profile.spec.tsx index 0cb3a1b5..b888bb87 100644 --- a/frontend/apps/remark42/app/components/profile/profile.spec.tsx +++ b/frontend/apps/remark42/app/components/profile/profile.spec.tsx @@ -164,7 +164,7 @@ describe('', () => { expect(container.querySelector('profile-footer')).not.toBeInTheDocument(); }); - it('load more button should dissapear if there no more comments to fetch', async () => { + it('load more button should disappear if there no more comments to fetch', async () => { jest .spyOn(api, 'getUserComments') .mockImplementation(async () => ({ comments: new Array(10).fill(commentStub), count: 15 }));