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:
Thomas Trompette
2024-01-30 10:47:15 +01:00
committed by GitHub
parent c9a19fd4d9
commit 96bcddc056
2 changed files with 53 additions and 21 deletions

View File

@ -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>
);
};