diff --git a/packages/desktop/src/tree/protected/terminal/panels/MainPanel.tsx b/packages/desktop/src/tree/protected/terminal/panels/MainPanel.tsx index 85fb240..5529faf 100644 --- a/packages/desktop/src/tree/protected/terminal/panels/MainPanel.tsx +++ b/packages/desktop/src/tree/protected/terminal/panels/MainPanel.tsx @@ -101,41 +101,67 @@ function LineDetails() { const [peopleSearch, setPeopleSearch] = useState(''); - return ( -
-
- {/* people search */} - People -
+
+ {/* people search */} + People +
- - setPeopleSearch(e.target.value)} - value={peopleSearch} - /> -
+ > + + setPeopleSearch(e.target.value)} + value={peopleSearch} + /> +
- {/* dropdown search results */} -
- {selectedLine.otherUserObjects.map((otherUser) => { - return ( -
+ {selectedLine.otherUserObjects.map((otherUser) => { + return ( +
- - - {otherUser.name} - {otherUser.email} - -
- ); - })} + > + + + {otherUser.name} + {otherUser.email} + +
+ ); + })} + + {selectedLine.otherUserObjects.map((otherUser) => { + return ( +
+ + + {otherUser.name} + {otherUser.email} + +
+ ); + })} +
+ + {/* selected people */} + + {`Selected`} + + {selectedLine.otherMembers.length}/7 + {selectedLine.otherUserObjects.map((otherUser) => { return ( @@ -153,32 +179,8 @@ function LineDetails() { ); })}
- - {/* selected people */} - - {`Selected`} - - {selectedLine.otherMembers.length}/7 - - - {selectedLine.otherUserObjects.map((otherUser) => { - return ( -
- - - {otherUser.name} - {otherUser.email} - -
- ); - })}
-
- ); + ); return (