Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
ZermattChris committed Oct 11, 2023
1 parent 484231c commit c0e0769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/storex.js
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ export default new Vuex.Store({
//console.log(state._flightsList)

// if we have a valid Array then loop through looking for the matching Flight Object's body.
if (isIterable(state.selectedFlight) === false) return null
if (!isIterable(state.selectedFlight)) return null

for (const flghtObj of state._flightsList) {
//console.log(flghtObj)
Expand Down

0 comments on commit c0e0769

Please sign in to comment.