diff --git a/src/components/views/elements/LazyRenderList.tsx b/src/components/views/elements/LazyRenderList.tsx index 65d578b56fa..54c76f27a7c 100644 --- a/src/components/views/elements/LazyRenderList.tsx +++ b/src/components/views/elements/LazyRenderList.tsx @@ -55,7 +55,7 @@ class ItemRange { } } -interface IProps { +interface IProps { // height in pixels of the component returned by `renderItem` itemHeight: number; // function to turn an element of `items` into a react component @@ -84,13 +84,13 @@ interface IState { } @replaceableComponent("views.elements.LazyRenderList") -export default class LazyRenderList extends React.Component, IState> { +export default class LazyRenderList extends React.Component, IState> { public static defaultProps: Partial> = { overflowItems: 20, overflowMargin: 5, }; - constructor(props: IProps) { + constructor(props: IProps) { super(props); this.state = {