fix: quick fix

This commit is contained in:
Ivan Shmidt
2020-05-18 19:30:39 +02:00
parent 3565d13f91
commit 89a4f6a31b
2 changed files with 4 additions and 4 deletions
@@ -95,12 +95,12 @@ const pickClassName = (
const Page = () => (
<Layout>
<Content>
<BuildWithSteps />
<BuildWithStepsView />
</Content>
</Layout>
);
const BuildWithSteps: FC<{}> = () => {
const BuildWithStepsView: FC<{}> = () => {
const { buildId = '' } = useParams();
const classes = useStyles();
const [settings] = useSettings();
@@ -163,4 +163,4 @@ const ActionsList: FC<{ actions: BuildStepAction[]; name: string }> = ({
};
export default Page;
export { BuildWithSteps };
export { BuildWithStepsView as BuildWithSteps };
+1 -1
View File
@@ -16,7 +16,7 @@
import React, { FC, useReducer, Dispatch, Reducer } from 'react';
import { circleCIApiRef } from '../api';
import type { State, Action, SettingsState } from './types';
export { SettingsState };
export type { SettingsState };
export const AppContext = React.createContext<[State, Dispatch<Action>]>(
[] as any,