diff --git a/src/components/SurveyForm/surveyValidation.js b/src/components/SurveyForm/surveyValidation.js
index 93a63a6ac..92081c1fd 100644
--- a/src/components/SurveyForm/surveyValidation.js
+++ b/src/components/SurveyForm/surveyValidation.js
@@ -4,6 +4,8 @@ import {createValidator, required, maxLength, email} from 'utils/validation';
const surveyValidation = createValidator({
name: [required, maxLength(10)],
email: [required, email],
- occupation: maxLength(20) // single rules don't have to be in an array
+ occupation: maxLength(20), // single rules don't have to be in an array
+ address: maxLength(100),
+ blood: [required, maxLength(2)]
});
export default memoize(10)(surveyValidation);
diff --git a/src/containers/Survey/Survey.js b/src/containers/Survey/Survey.js
index 0473f8758..926ad63f9 100644
--- a/src/containers/Survey/Survey.js
+++ b/src/containers/Survey/Survey.js
@@ -23,7 +23,9 @@ export default class Survey extends Component {
email: 'bobby@gmail.com',
occupation: 'Redux Wizard',
currentlyEmployed: true,
- sex: 'male'
+ sex: 'male',
+ address: '99/999 thailand',
+ blood: 'A'
});
}