Skip to content

Commit

Permalink
- restores a component displayName
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-goldstein committed Jul 20, 2021
1 parent 9361905 commit e5101fb
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export type StatefulBodyProps = OwnProps & PropsFromRedux;
* The Body component is used everywhere timeline is used within the security application. It is the highest level component
* that is shared across all implementations of the timeline.
*/
// eslint-disable-next-line react/display-name

export const BodyComponent = React.memo<StatefulBodyProps>(
({
activePage,
Expand Down Expand Up @@ -342,6 +342,8 @@ export const BodyComponent = React.memo<StatefulBodyProps>(
}
);

BodyComponent.displayName = 'BodyComponent';

const makeMapStateToProps = () => {
const memoizedColumnHeaders: (
headers: ColumnHeaderOptions[],
Expand Down

0 comments on commit e5101fb

Please sign in to comment.