diff --git a/client/src/components/settings/Certification.js b/client/src/components/settings/Certification.js
index 9461ed6fba..6640b56885 100644
--- a/client/src/components/settings/Certification.js
+++ b/client/src/components/settings/Certification.js
@@ -16,7 +16,8 @@ import { projectMap, legacyProjectMap } from '../../resources/certProjectMap';
import SectionHeader from './SectionHeader';
import SolutionViewer from './SolutionViewer';
import { FullWidthRow, Spacer } from '../helpers';
-// import { Form } from '../formHelpers';
+import { Form } from '../formHelpers';
+
import { maybeUrlRE } from '../../utils';
import './certification.css';
@@ -113,6 +114,7 @@ class CertificationSettings extends Component {
super(props);
this.state = { ...initialState };
+ this.handleSubmit = this.handleSubmit.bind(this);
}
createHandleLinkButtonClick = to => e => {
@@ -230,9 +232,6 @@ class CertificationSettings extends Component {
);
renderProjectsFor = (certName, isCert) => {
- console.log(certName);
- console.log(this.getUserIsCertMap());
- console.log(this.getUserIsCertMap()[certName]);
const { username, isHonest, createFlashMessage, verifyCert } = this.props;
const { superBlock } = first(projectMap[certName]);
const certLocation = `/certification/${username}/${superBlock}`;
@@ -277,30 +276,51 @@ class CertificationSettings extends Component {
]);
};
- renderLegacyCertifications = certName => (
- {certName}
-
-
-
-
-
-
-
- {this.renderLegacyProjectsFor(
- certName,
- this.getUserIsCertMap()[certName]
- )}
-
- Project Name
- Solution
- {certName}
+
+