diff --git a/app/javascript/src/scenes/SettingsPage/index.jsx b/app/javascript/src/scenes/SettingsPage/index.jsx index 6b4c4345f..9ee040d1e 100644 --- a/app/javascript/src/scenes/SettingsPage/index.jsx +++ b/app/javascript/src/scenes/SettingsPage/index.jsx @@ -67,7 +67,7 @@ export default class SettingsPage extends Component<*, State> { active={this.state.active === "2"} > - + diff --git a/app/javascript/src/scenes/SettingsPage/scenes/team/index.jsx b/app/javascript/src/scenes/SettingsPage/scenes/team/index.jsx index 3ea109b56..e0fd4dddf 100644 --- a/app/javascript/src/scenes/SettingsPage/scenes/team/index.jsx +++ b/app/javascript/src/scenes/SettingsPage/scenes/team/index.jsx @@ -6,9 +6,10 @@ import { Breadcrumb, Row, Col, Glyphicon, Well } from "react-bootstrap"; import { LinkContainer } from "react-router-bootstrap"; import { FormattedHTMLMessage, FormattedMessage } from "react-intl"; import moment from "moment"; -import { formatBytes } from "../../../../services/helpers/units_converter_helper"; import type { Match } from "react-router-dom"; import type { Team } from "flow-typed"; + +import { formatBytes } from "../../../../services/helpers/units_converter_helper"; import { getTeamDetails } from "../../../../services/api/teams_api"; import { SETTINGS_TEAMS_ROUTE } from "../../../../config/routes"; diff --git a/app/javascript/src/services/api/teams_api.js b/app/javascript/src/services/api/teams_api.js index d32226b61..82b7bb318 100644 --- a/app/javascript/src/services/api/teams_api.js +++ b/app/javascript/src/services/api/teams_api.js @@ -1,7 +1,7 @@ // @flow +import type { NewTeam } from "flow-typed"; import { axiosInstance } from "./config"; import { TEAM_DETAILS_PATH, TEAMS_PATH } from "./endpoints"; -import type { NewTeam } from "flow-typed"; export const getTeamDetails = (teamID: string): Promise<*> => { const path = TEAM_DETAILS_PATH.replace(":team_id", teamID);