Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Remove unnecessary param
Browse files Browse the repository at this point in the history
  • Loading branch information
ohltyler committed Apr 28, 2020
1 parent fd4441e commit 2947d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/pages/DetectorsList/utils/tableUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const renderIndices = (indices: string[]) => {
return get(indices, '0', DEFAULT_EMPTY_DATA);
};

const renderState = (state: DETECTOR_STATE, detector: Detector) => {
const renderState = (state: DETECTOR_STATE) => {
return (
//@ts-ignore
<EuiHealth color={stateToColorMap.get(state)}>{state}</EuiHealth>
Expand Down

0 comments on commit 2947d08

Please sign in to comment.