Making things prettier:

npx prettier --write src/routes/journals/
This commit is contained in:
Scott Idem
2026-05-05 17:27:48 -04:00
parent 8b087edeb9
commit 62cc26d1f9
16 changed files with 142 additions and 106 deletions

View File

@@ -54,12 +54,7 @@ describe('Journal Entry Search Filtering', () => {
});
expect(result?.length).toBe(4);
expect(result?.map((entry) => entry.id)).toEqual([
'4',
'3',
'2',
'1'
]);
expect(result?.map((entry) => entry.id)).toEqual(['4', '3', '2', '1']);
});
it('should filter by enabled and hidden status', () => {