diff --git a/src/ReviewAnswers.js b/src/ReviewAnswers.js
index 6a80950d18d29cd9eb5de1eea471dce5f23fd74d..de2a83791fde5a5e9d2bac9df689bdc5cb774df4 100644
--- a/src/ReviewAnswers.js
+++ b/src/ReviewAnswers.js
@@ -39,6 +39,32 @@ export default class ReviewAnswers extends React.Component {
const questions = this.props.questions;
const phoneNumber = this.props.form.PHONE === 0 ? 'N/A' : this.props.form.PHONE;
+ const aptBreakdown = questions['unitBreakdown'].answers.filter(c => c === 0).length !== 6?
+
+
+
+
+ Apartment Unit Breakdown
+
+
+ Studio: {this.props.questions['unitBreakdown'].answers[0]}
+ One Bedroom: {this.props.questions['unitBreakdown'].answers[1]}
+ Two Bedroom: {this.props.questions['unitBreakdown'].answers[2]}
+ Three Bedroom: {this.props.questions['unitBreakdown'].answers[3]}
+ Four Bedroom: {this.props.questions['unitBreakdown'].answers[4]}
+ Other: {this.props.questions['unitBreakdown'].answers[5]}
+
+
+
+
+

this.editAnswer('unitBreakdown') } />
+
+
+
+
+
+ : '';
+
const content = (
@@ -185,30 +211,8 @@ export default class ReviewAnswers extends React.Component {
-
-
-
-
-
- Apartment Unit Breakdown
-
-
- Studio: {this.props.questions['unitBreakdown'].answers[0]}
- One Bedroom: {this.props.questions['unitBreakdown'].answers[1]}
- Two Bedroom: {this.props.questions['unitBreakdown'].answers[2]}
- Three Bedroom: {this.props.questions['unitBreakdown'].answers[3]}
- Four Bedroom: {this.props.questions['unitBreakdown'].answers[4]}
- Other: {this.props.questions['unitBreakdown'].answers[5]}
-
-
-
-
-

this.editAnswer('unitBreakdown') } />
-
-
-
-
-
+
+ {aptBreakdown}