From 67939f535c633a80b9788ef79d43d1a1ca40cc1b Mon Sep 17 00:00:00 2001 From: RujitRaval Date: Thu, 12 Dec 2019 19:17:34 -0500 Subject: [PATCH 1/2] Display message only for fuel oil and electric resistance --- src/Fuels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fuels.js b/src/Fuels.js index dda0caf1e..ccb314361 100644 --- a/src/Fuels.js +++ b/src/Fuels.js @@ -43,7 +43,7 @@ export default class Fuels extends React.Component { render() { let message = ""; - if (this.state.answer === 4 || this.state.answer === 5 || this.state.answer === 6 ) { + if (this.state.answer === 3 || this.state.answer === 5) { message = (
  {' '} -- GitLab From 83ee49c4a02d0576ec210d46820733c7c3c19260 Mon Sep 17 00:00:00 2001 From: RujitRaval Date: Thu, 12 Dec 2019 19:19:41 -0500 Subject: [PATCH 2/2] DRAFT -> DRAFTY --- src/ComfortIssues.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ComfortIssues.js b/src/ComfortIssues.js index 901f457db..b3aacc522 100644 --- a/src/ComfortIssues.js +++ b/src/ComfortIssues.js @@ -13,7 +13,7 @@ export default class ComfortIssues extends React.Component { tooCold: 'They complain it\'s too cold', windowsOpen: 'They keep the window open', spaceHeaters: 'They use space heaters', - draft: 'They say their apartment is draft', + draft: 'They say their apartment is drafty', noComplaint: 'They don\'t complain at all', } } -- GitLab