From 3565abec1f0da297a18f9e5342fabd503bf24a13 Mon Sep 17 00:00:00 2001 From: RujitRaval Date: Thu, 30 Jan 2020 12:17:25 -0500 Subject: [PATCH] Remove invalid options --- src/App.js | 8 ++++---- src/BuildingFutureImprovement.js | 4 ---- src/BuildingPastImprovement.js | 4 ---- 3 files changed, 4 insertions(+), 12 deletions(-) diff --git a/src/App.js b/src/App.js index 893d75a3b..875d2954a 100644 --- a/src/App.js +++ b/src/App.js @@ -281,7 +281,7 @@ class App extends React.Component { title: 'Install a new heating system', answer: 2, value: '', - answerIds: [96, 97, 98, 99, 100, 101, 33, 12], + answerIds: [96, 97, 98, 99, 100, 33, 12], checked: false, }, { @@ -290,7 +290,7 @@ class App extends React.Component { title: 'Install a new cooling system', answer: 2, value: '', - answerIds: [102, 103, 104, 105, 106, 107, 108, 33, 12], + answerIds: [102, 103, 104, 105, 106, 108, 33, 12], checked: false, }, { @@ -441,7 +441,7 @@ class App extends React.Component { title: 'Install a new heating system', answer: 2, value: '', - answerIds: [96, 97, 98, 99, 100, 101, 33, 12], + answerIds: [96, 97, 98, 99, 100, 33, 12], checked: false, }, { @@ -450,7 +450,7 @@ class App extends React.Component { title: 'Install a new cooling system', answer: 2, value: '', - answerIds: [102, 103, 104, 105, 106, 107, 108, 33, 12], + answerIds: [102, 103, 104, 105, 106, 108, 33, 12], checked: false, }, { diff --git a/src/BuildingFutureImprovement.js b/src/BuildingFutureImprovement.js index 376891cad..7fdc00e80 100644 --- a/src/BuildingFutureImprovement.js +++ b/src/BuildingFutureImprovement.js @@ -43,7 +43,6 @@ export default class BuildingFutureImprovement extends React.Component { 'Central forced-air system', 'Electric baseboard', 'Individual heat pumps', - 'I don\'t have a heating system', 'Other', 'I\'m not sure', ]; @@ -53,7 +52,6 @@ export default class BuildingFutureImprovement extends React.Component { 'Rooftop air conditioning units', 'Central chiller plant and fan coil units', 'Mini split heat pump systems', - 'I don\'t have a cooling system', 'VRF', 'Other', 'I\'m not sure', @@ -67,7 +65,6 @@ export default class BuildingFutureImprovement extends React.Component { 98: 'Central forced-air system', 99: 'Electric baseboard', 100: 'Individual heat pumps', - 101: 'I don\'t have a heating system', 33: 'I\'m not sure', 12: 'Other', 102: 'Window A/C units', @@ -75,7 +72,6 @@ export default class BuildingFutureImprovement extends React.Component { 104: 'Rooftop air conditioning units', 105: 'Central chiller plant and fan coil units', 106: 'Mini split heat pump systems', - 107: 'I don\'t have a cooling system', 108: 'VRF', }; } diff --git a/src/BuildingPastImprovement.js b/src/BuildingPastImprovement.js index ca89286ff..0494f8d81 100644 --- a/src/BuildingPastImprovement.js +++ b/src/BuildingPastImprovement.js @@ -41,7 +41,6 @@ export default class BuildingPastImprovement extends React.Component { 'Central forced-air system', 'Electric baseboard', 'Individual heat pumps', - 'I don\'t have a heating system', 'Other', 'I\'m not sure', ]; @@ -51,7 +50,6 @@ export default class BuildingPastImprovement extends React.Component { 'Rooftop air conditioning units', 'Central chiller plant and fan coil units', 'Mini split heat pump systems', - 'I don\'t have a cooling system', 'VRF', 'Other', 'I\'m not sure', @@ -65,7 +63,6 @@ export default class BuildingPastImprovement extends React.Component { 98: 'Central forced-air system', 99: 'Electric baseboard', 100: 'Individual heat pumps', - 101: 'I don\'t have a heating system', 33: 'I\'m not sure', 12: 'Other', 102: 'Window A/C units', @@ -73,7 +70,6 @@ export default class BuildingPastImprovement extends React.Component { 104: 'Rooftop air conditioning units', 105: 'Central chiller plant and fan coil units', 106: 'Mini split heat pump systems', - 107: 'I don\'t have a cooling system', 108: 'VRF', }; } -- GitLab