chore(frontend): improve code formatting for readability

Standardize multiline formatting across components, tests, and API hooks for better consistency and clarity:
- Adjusted function and object property indentation.
- Updated tests and components to align with clean coding practices.
This commit is contained in:
2026-01-03 01:12:51 +01:00
parent e0739a786c
commit 4f24cebf11
14 changed files with 88 additions and 55 deletions

View File

@@ -98,9 +98,7 @@ describe('ProjectsGrid', () => {
});
it('applies custom className', () => {
const { container } = render(
<ProjectsGrid projects={mockProjects} className="custom-class" />
);
const { container } = render(<ProjectsGrid projects={mockProjects} className="custom-class" />);
expect(container.firstChild).toHaveClass('custom-class');
});