Skip to content

Commit

Permalink
style: resolve lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
p-eye committed Sep 17, 2024
1 parent 6a8e762 commit bcfa5f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/components/ConsumerGroups/Details/ListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ interface Props {
const ListItem: React.FC<Props> = ({ clusterName, name, consumers }) => {
const [isOpen, setIsOpen] = React.useState(false);
const consumerProps = useAppParams<ClusterGroupParam>();
const deleteOffsetMutation = useDeleteConsumerGroupOffsetsMutation(consumerProps);
const deleteOffsetMutation = useDeleteConsumerGroupOffsetsMutation(

Check warning on line 30 in frontend/src/components/ConsumerGroups/Details/ListItem.tsx

View workflow job for this annotation

GitHub Actions / build / build-and-test

Replace `·useDeleteConsumerGroupOffsetsMutation(⏎····consumerProps⏎··` with `⏎····useDeleteConsumerGroupOffsetsMutation(consumerProps`
consumerProps
);

const getTotalconsumerLag = () => {
let count = 0;
Expand Down

0 comments on commit bcfa5f7

Please sign in to comment.