+
{t('install.add_organization.description')}
);
};
+AddOrganizationName.propTypes = {
+ handleSettingsChange: PropTypes.func,
+ handleSettingsSubmit: PropTypes.func,
+ install: PropTypes.object,
+};
+
export default AddOrganizationName;
diff --git a/client/coral-admin/src/routes/Install/components/Steps/CreateYourAccount.js b/client/coral-admin/src/routes/Install/components/Steps/CreateYourAccount.js
index d4d43dc92..dec111c5b 100644
--- a/client/coral-admin/src/routes/Install/components/Steps/CreateYourAccount.js
+++ b/client/coral-admin/src/routes/Install/components/Steps/CreateYourAccount.js
@@ -1,13 +1,14 @@
import React from 'react';
import styles from './style.css';
import {TextField, Button, Spinner} from 'coral-ui';
-
+import PropTypes from 'prop-types';
import t from 'coral-framework/services/i18n';
+import cn from 'classnames';
const InitialStep = (props) => {
const {handleUserChange, handleUserSubmit, install} = props;
return (
-