Add participant avatars + remove tbody from fetchMore loader (#3679)
* Add participant avatars + remove tbody from fetchMore loader * Update sender names --------- Co-authored-by: Thomas Trompette <thomast@twenty.com>
This commit is contained in:
@ -27,15 +27,8 @@ export const FetchMoreLoader = ({
|
||||
});
|
||||
|
||||
return (
|
||||
<tbody ref={tbodyRef}>
|
||||
{loading && (
|
||||
<tr>
|
||||
<td colSpan={7}>
|
||||
<StyledText>Loading more...</StyledText>
|
||||
</td>
|
||||
<td colSpan={7} />
|
||||
</tr>
|
||||
)}
|
||||
</tbody>
|
||||
<div ref={tbodyRef}>
|
||||
{loading && <StyledText>Loading more...</StyledText>}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user