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:
@@ -78,7 +78,7 @@ describe('ProjectCard', () => {
|
||||
|
||||
// Menu button should exist with sr-only text
|
||||
const menuButtons = screen.getAllByRole('button');
|
||||
const menuButton = menuButtons.find(btn => btn.querySelector('.sr-only'));
|
||||
const menuButton = menuButtons.find((btn) => btn.querySelector('.sr-only'));
|
||||
expect(menuButton).toBeDefined();
|
||||
expect(menuButton!.querySelector('.sr-only')).toHaveTextContent('Project actions');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user