From 29c93c79c3335a04f8c865dc996cd16f0211a8e3 Mon Sep 17 00:00:00 2001 From: SagarRajput-7 Date: Mon, 23 Dec 2024 10:55:30 +0530 Subject: [PATCH] chore: fixed eslint errors --- .../src/api/messagingQueues/getTopicThroughputOverview.ts | 5 +++-- .../MessagingQueues/MQDetails/MQTables/MQTableUtils.tsx | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/api/messagingQueues/getTopicThroughputOverview.ts b/frontend/src/api/messagingQueues/getTopicThroughputOverview.ts index 072f5eccf2..ac955e8405 100644 --- a/frontend/src/api/messagingQueues/getTopicThroughputOverview.ts +++ b/frontend/src/api/messagingQueues/getTopicThroughputOverview.ts @@ -1,9 +1,10 @@ import axios from 'api'; +import { ErrorResponse, SuccessResponse } from 'types/api'; + import { MessagingQueueServicePayload, MessagingQueuesPayloadProps, -} from 'pages/MessagingQueues/MQDetails/MQTables/getConsumerLagDetails'; -import { ErrorResponse, SuccessResponse } from 'types/api'; +} from './getConsumerLagDetails'; export const getTopicThroughputOverview = async ( props: Omit, diff --git a/frontend/src/pages/MessagingQueues/MQDetails/MQTables/MQTableUtils.tsx b/frontend/src/pages/MessagingQueues/MQDetails/MQTables/MQTableUtils.tsx index 1671baf7f9..6ee6890cad 100644 --- a/frontend/src/pages/MessagingQueues/MQDetails/MQTables/MQTableUtils.tsx +++ b/frontend/src/pages/MessagingQueues/MQDetails/MQTables/MQTableUtils.tsx @@ -1,7 +1,6 @@ +import { MessagingQueuesPayloadProps } from 'api/messagingQueues/getConsumerLagDetails'; import { RowData } from 'pages/MessagingQueues/MessagingQueuesUtils'; -import { MessagingQueuesPayloadProps } from './getConsumerLagDetails'; - export function getTableDataForProducerLatencyOverview( data: MessagingQueuesPayloadProps['payload'], ): RowData[] {