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

Commit f449726

Browse files
authored
Remove missing function (#854)
1 parent fbe8433 commit f449726

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

web/init/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@replicatedhq/ship-init",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Shared component that contains the Ship Init app",
55
"author": "Replicated, Inc.",
66
"license": "Apache-2.0",

web/init/src/components/config_only/ConfigOnly.jsx

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import React from "react";
22
import ErrorBoundary from "../../ErrorBoundary";
33

4-
import {
5-
each,
6-
isEmpty,
7-
map,
8-
partialRight,
9-
omit,
10-
has,
11-
forEach,
4+
import {
5+
each,
6+
isEmpty,
7+
map,
8+
partialRight,
9+
omit,
10+
has,
11+
forEach,
1212
includes
1313
} from "lodash";
1414
import { ConfigService } from "../../services/ConfigService";
@@ -34,7 +34,6 @@ export default class ConfigOnly extends React.Component {
3434
}
3535

3636
componentDidMount() {
37-
this.props.getChannel();
3837
if (!this.props.settingsFieldsList.length) {
3938
this.props.getApplicationSettings({item_values: null});
4039
}

web/init/src/components/shared/DetermineStep.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ export default class DetermineStep extends React.Component {
9797
}
9898

9999
componentDidMount() {
100-
//this.props.getChannel();
101100
this.props.getMetadata();
102101
this.startPoll();
103102
this.startMaxTimeout();

0 commit comments

Comments
 (0)