Skip to content

Commit

Permalink
Remove consumer group header
Browse files Browse the repository at this point in the history
Signed-off-by: hemahg <[email protected]>
  • Loading branch information
hemahg committed Jan 23, 2025
1 parent 4b66035 commit 2c66c40
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,7 @@ function Header({

return (
<AppHeader
title={t("ConsumerGroupsTable.reset_consumer_offset")}
subTitle={
decodeURIComponent(groupId) === "+" ? (
<i>Empty Name</i>
) : (
t.rich("ConsumerGroupsTable.consumer_name", { groupId })
)
}
title={decodeURIComponent(groupId) === "+" ? <i>Empty Name</i> : groupId}
/>
);
}

0 comments on commit 2c66c40

Please sign in to comment.