Fixed ESLint errors
This commit is contained in:
@@ -28,7 +28,6 @@ export function useConsumerGroupOffsets(groupId: string) {
|
||||
const groupOffsets = await api.getConsumerGroupOffsets(groupId);
|
||||
const groupWithTopicOffsets = await Promise.all(
|
||||
groupOffsets.map(async ({ topic, partitions }) => {
|
||||
debugger;
|
||||
const topicOffsets = _.keyBy(
|
||||
await api.getTopicOffsets(topic),
|
||||
partition => partition.id,
|
||||
@@ -49,8 +48,6 @@ export function useConsumerGroupOffsets(groupId: string) {
|
||||
}
|
||||
}, [api, errorApi, groupId]);
|
||||
|
||||
debugger;
|
||||
|
||||
return [
|
||||
{
|
||||
loading,
|
||||
|
||||
Reference in New Issue
Block a user