Skip to content

Commit

Permalink
feat: fixed typo in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarRajput-7 committed Nov 12, 2024
1 parent 87fe6cd commit 531becc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface TopicThroughputProducerOverviewResponse {
};
}

export const getColumnsForProduderLatencyOverview = (
export const getColumnsForProducerLatencyOverview = (
list: ProducerLatencyOverviewColumn[],
history: History<unknown>,
): RowData[] => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {
MessagingQueuesPayloadProps,
} from './getConsumerLagDetails';
import {
getColumnsForProduderLatencyOverview,
getColumnsForProducerLatencyOverview,
getTableDataForProducerLatencyOverview,
TopicThroughputProducerOverviewResponse,
} from './MQTableUtils';
Expand Down Expand Up @@ -194,7 +194,7 @@ function MessagingQueuesTable({
tableApiPayload?.detailType === 'producer'
) {
setColumns(
getColumnsForProduderLatencyOverview(
getColumnsForProducerLatencyOverview(
(data?.payload as TopicThroughputProducerOverviewResponse['payload'])
.result[0].list,
history,
Expand Down

0 comments on commit 531becc

Please sign in to comment.