From 58acca4dcbced09e8edaabde407f854da5348bfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hs=C3=BCan?= <8325632+up9cloud@users.noreply.github.com> Date: Wed, 4 Jun 2025 15:18:46 -0700 Subject: [PATCH] Fix profile.spec.tsx typo --- frontend/apps/remark42/app/components/profile/profile.spec.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }));