From 18d43b62586e032f90d32d3f7719fc45cc15d694 Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Tue, 22 May 2018 15:02:27 -0500 Subject: [PATCH] Fix bug where UserInfoForm wasn't included --- javascripts/src/components/registration_page/UserInfoPanel.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/javascripts/src/components/registration_page/UserInfoPanel.tsx b/javascripts/src/components/registration_page/UserInfoPanel.tsx index c5425692..76ad5255 100644 --- a/javascripts/src/components/registration_page/UserInfoPanel.tsx +++ b/javascripts/src/components/registration_page/UserInfoPanel.tsx @@ -6,6 +6,7 @@ import {Field} from "mobx-react-form"; import {computed} from 'mobx'; import {WizardPanel, WizardTabPanelProps} from "../common/wizard/WizardPanel"; import {WizardTabPanelState} from "../common/wizard/wizard_state"; +import UserInfoForm from "./UserInfoForm"; export interface UserInfoPanelProps extends WizardTabPanelProps { buttonText: string @@ -40,7 +41,7 @@ class UserInfoPanel extends React.Component - + ; }