✂️ Pruning useless code

This commit is contained in:
2021-06-14 10:47:12 -07:00
parent 7ea962952a
commit 22a5a84762
5 changed files with 1744 additions and 21228 deletions

View File

@@ -3,7 +3,6 @@ import { connect } from "react-redux";
import ZeroState from "./ZeroState";
import { RecentlyImported } from "./RecentlyImported";
import { getRecentlyImportedComicBooks } from "../actions/fileops.actions";
import { isUndefined } from "lodash";
interface IProps {
getRecentComics: Function;
@@ -15,9 +14,6 @@ interface IState {
class Dashboard extends React.Component<IProps, IState> {
componentDidMount() {
if (!isUndefined(this.props.recentComics)) {
console.log("asd");
}
this.props.getRecentComics();
}
public render() {