From b5d8352b8c5cb3c5c7611908337213cab223681e Mon Sep 17 00:00:00 2001 From: RujitRaval Date: Wed, 29 Apr 2020 12:13:48 -0400 Subject: [PATCH] Add central AC in the options --- src/App.js | 2 +- src/BuildingCoolingSystem.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 02060634e..dc1a1552a 100644 --- a/src/App.js +++ b/src/App.js @@ -302,7 +302,7 @@ class App extends React.Component { title: 'What type of cooling system does your building have?', answer: '', value: '', - answerIds: [102, 103, 104, 105, 106, 107, 108, 33, 12], + answerIds: [102, 103, 104, 105, 106, 107, 108, 113, 33, 12], prev: 'buildingHeatingSystem', next: 'buildingPastImprovement', }, diff --git a/src/BuildingCoolingSystem.js b/src/BuildingCoolingSystem.js index 4bbc7be1f..17c1c43d1 100644 --- a/src/BuildingCoolingSystem.js +++ b/src/BuildingCoolingSystem.js @@ -17,6 +17,7 @@ export default class BuildingCoolingSystem extends React.Component { 'Mini split heat pump systems', 'I don\'t have a cooling system', 'VRF', + 'Central Air Conditioning System', 'Other', 'I\'m not sure', ]; @@ -28,6 +29,7 @@ export default class BuildingCoolingSystem extends React.Component { 'MiniSplitHeatPump', 'NoCoolingSystem', 'VRF', + 'CentralAC', 'Other', 'NotSure', ]; -- GitLab