From a0ac94144071c7ab6ab40aef859e076e3a92d30d Mon Sep 17 00:00:00 2001 From: Noah Chamberland <59708478+SpaciousFish@users.noreply.github.com> Date: Wed, 14 Dec 2022 21:23:16 -0500 Subject: [PATCH] fix bug with unknown readings --- VnaviApp/App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VnaviApp/App.js b/VnaviApp/App.js index 79e922b..387621b 100644 --- a/VnaviApp/App.js +++ b/VnaviApp/App.js @@ -638,6 +638,8 @@ class App extends Component { this.setState({ unknownReadings: this.state.unknownReadings + 1 }); } return; + } else { + this.setState({ unknownReadings: 0 }); } if (this.state.phase == "Searching") {