style: ensure semicolons at line ends

This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent 18ba0f2a70
commit dc60b968e7
14 changed files with 33 additions and 33 deletions
@@ -97,7 +97,7 @@ describe('fetchLegalContent', () => {
test('throws FetchError on HTTP error', async () => {
fetchSpy.mockResolvedValue(
new Response(null, { status: 404 })
)
);
await expect(getLegalNotice()).rejects.toThrow(FetchError);
});