Skip to content
This repository was archived by the owner on Mar 24, 2023. It is now read-only.

Commit

Permalink
Remove missing function (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob0h authored Mar 6, 2019
1 parent fbe8433 commit f449726
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion web/init/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@replicatedhq/ship-init",
"version": "1.5.0",
"version": "1.5.1",
"description": "Shared component that contains the Ship Init app",
"author": "Replicated, Inc.",
"license": "Apache-2.0",
Expand Down
17 changes: 8 additions & 9 deletions web/init/src/components/config_only/ConfigOnly.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React from "react";
import ErrorBoundary from "../../ErrorBoundary";

import {
each,
isEmpty,
map,
partialRight,
omit,
has,
forEach,
import {
each,
isEmpty,
map,
partialRight,
omit,
has,
forEach,
includes
} from "lodash";
import { ConfigService } from "../../services/ConfigService";
Expand All @@ -34,7 +34,6 @@ export default class ConfigOnly extends React.Component {
}

componentDidMount() {
this.props.getChannel();
if (!this.props.settingsFieldsList.length) {
this.props.getApplicationSettings({item_values: null});
}
Expand Down
1 change: 0 additions & 1 deletion web/init/src/components/shared/DetermineStep.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ export default class DetermineStep extends React.Component {
}

componentDidMount() {
//this.props.getChannel();
this.props.getMetadata();
this.startPoll();
this.startMaxTimeout();
Expand Down

0 comments on commit f449726

Please sign in to comment.