From 306d3235b33246b12e9743b8b50ac03ddf92eb2e Mon Sep 17 00:00:00 2001 From: Vivian Phung Date: Wed, 22 May 2024 14:54:51 -0400 Subject: [PATCH] Project Search Bar Dialog Update (#196) ### TL;DR Reordered the properties in the `ProjectSearchBar` component to follow better coding standards. ### What changed? In `ProjectSearchBarDialog.tsx`, the 'getItemProps' object was moved to the end of the properties list within `ProjectSearchBarItem`. ### How to test? Verify that the `ProjectSearchBar` component functions as intended and that no properties are unduly affected by this change. ### Why make this change? This change enhances code readability and consistency, aligning the ordering of the properties more accurately with our standards. --- .../projects/ProjectSearchBar/ProjectSearchBarDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/components/projects/ProjectSearchBar/ProjectSearchBarDialog.tsx b/packages/frontend/src/components/projects/ProjectSearchBar/ProjectSearchBarDialog.tsx index 40296ad4..f6bf6492 100644 --- a/packages/frontend/src/components/projects/ProjectSearchBar/ProjectSearchBarDialog.tsx +++ b/packages/frontend/src/components/projects/ProjectSearchBar/ProjectSearchBarDialog.tsx @@ -96,9 +96,9 @@ export const ProjectSearchBarDialog = ({

))