Truncate group name in panels

This commit is contained in:
Chewbacca
2023-05-23 12:32:55 -04:00
parent 5c069b8b93
commit c8ff9db879
4 changed files with 10 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ const MyGroupsPanel = () => {
>
{isFetching ? (
new Array(3).fill(0).map((_, idx) => (
<PlaceholderGroupSearch key={idx} />
<PlaceholderGroupSearch key={idx} withJoinAction={false} />
))
) : (
groups.slice(0, 3).map((group) => (

View File

@@ -19,7 +19,7 @@ const SuggestedGroupsPanel = () => {
>
{isFetching ? (
new Array(3).fill(0).map((_, idx) => (
<PlaceholderGroupSearch key={idx} />
<PlaceholderGroupSearch key={idx} withJoinAction={false} />
))
) : (
groups.slice(0, 3).map((group) => (