Skip to content

Commit fe66aba

Browse files
committed
Merge branch 'master' into suspense
2 parents 1b68878 + 04f5c45 commit fe66aba

12 files changed

Lines changed: 18 additions & 19 deletions
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ interface IObj {
1313
time: string;
1414
}
1515

16-
const ResponseCodeChart: React.FC = () => {
16+
const ResponseCodesChart: React.FC = () => {
1717
const { commsData } = useContext(CommsContext);
1818

1919
const createChart = () => {
@@ -93,4 +93,4 @@ const ResponseCodeChart: React.FC = () => {
9393
return <div className="responseCodeChart">{createChart()}</div>;
9494
};
9595

96-
export default ResponseCodeChart;
96+
export default ResponseCodesChart;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useContext } from 'react';
22
import Plot from 'react-plotly.js';
33
import { CommsContext } from '../context/CommsContext';
44

5-
const MicroServiceTraffic = () => {
5+
const TrafficChart = () => {
66
const { commsData } = useContext(CommsContext);
77
const microServiceCountdictionary: { [key: string]: number } = {};
88

@@ -116,4 +116,4 @@ const MicroServiceTraffic = () => {
116116
);
117117
};
118118

119-
export default MicroServiceTraffic;
119+
export default TrafficChart;

0 commit comments

Comments
 (0)