Skip to content

Commit

Permalink
fix: rssi error
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed May 15, 2024
1 parent eed858c commit c4b6e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export function getRoute(item) {
].map(
(r, i) =>
`${r}${
repRSSI[i] && !isRssiError(repRSSI[i - 1])
repRSSI[i - 1] && !isRssiError(repRSSI[i - 1])
? ` (${rssiToString(repRSSI[i - 1])})`
: ''
}`,
Expand Down

0 comments on commit c4b6e80

Please sign in to comment.