diff --git a/src/FilterLists.Web/ClientApp/components/Home.tsx b/src/FilterLists.Web/ClientApp/components/Home.tsx index 8b2152995..3e4926f86 100644 --- a/src/FilterLists.Web/ClientApp/components/Home.tsx +++ b/src/FilterLists.Web/ClientApp/components/Home.tsx @@ -17,8 +17,8 @@ interface IFilterListsState { } export class Home extends React.Component, IFilterListsState> { - constructor() { - super(); + constructor(props: any) { + super(props); this.state = { filterLists: [], loading: true }; fetch("https://api.filterlists.com/v1/lists") .then(response => response.json() as Promise)