removed unneeded comments

This commit is contained in:
kyle hoell
2020-12-07 21:06:22 -05:00
parent 1e28ba1951
commit 13dc080388
22 changed files with 0 additions and 82 deletions
-6
View File
@@ -17,8 +17,6 @@ class DataFormContainer extends React.Component {
changeListViewMode = () => {
console.log("changing list view", this.props.listView);
if (!this.props.listView) {
this.props.dispatch(enableListView())
} else {
@@ -55,10 +53,6 @@ class DataFormContainer extends React.Component {
loadMoreItems = () => {
// return;
console.log("load more items dataform");
let limit = window.localStorage.getItem("list-size") || 50
limit = parseInt(limit)
-3
View File
@@ -52,9 +52,6 @@ class HeaderContainer extends React.Component {
const value = e.target.value;
this.searchValue = value;
console.log("search on change", value);
this.props.dispatch(setSearch(value))
this.searchSuggested()
}
-3
View File
@@ -48,7 +48,6 @@ class HomePageContainer extends React.Component {
this.props.dispatch(startResetParentList());
} else if (pathname.includes("/search")) {
console.log("login check set search")
this.setSearchItems();
return;
@@ -189,8 +188,6 @@ class HomePageContainer extends React.Component {
const storageType = url.searchParams.get("storageType") || undefined;
const folderSearch = url.searchParams.get("folder_search") || undefined;
console.log("Search", value, parent, storageType, folderSearch);
this.props.dispatch(startResetCache())
this.props.dispatch(setCurrentRouteType("search"))
this.props.dispatch(setCachedSearch(value))
-2
View File
@@ -70,8 +70,6 @@ class SettingsPageContainer extends React.Component {
env.emailAddress = response.data.email
this.props.dispatch(setParent(uuid.v4()))
console.log("user detailed", response.data)
this.setState(() => {
return {
...this.state,