Add Portal v2 logging

This commit is contained in:
fragosti
2018-06-14 10:28:02 -07:00
parent 4efd28c092
commit 677e77d0ae
8 changed files with 62 additions and 15 deletions

View File

@@ -28,6 +28,7 @@ interface ConnectedState {
userSuppliedOrderCache: Order;
flashMessage?: string | React.ReactNode;
translate: Translate;
portalOnboardingStep: number;
}
interface ConnectedDispatch {
@@ -76,6 +77,7 @@ const mapStateToProps = (state: State, _ownProps: PortalComponentProps): Connect
userSuppliedOrderCache: state.userSuppliedOrderCache,
flashMessage: state.flashMessage,
translate: state.translate,
portalOnboardingStep: state.portalOnboardingStep,
};
};