There was an error while loading. Please reload this page.
1 parent 9a48205 commit 2f78b64Copy full SHA for 2f78b64
1 file changed
packages/web/src/pages/Nodes/index.tsx
@@ -165,7 +165,7 @@ const NodesPage = (): JSX.Element => {
165
? node?.viaMqtt === false && node.hopsAway === 0
166
? t("nodesTable.connectionStatus.direct")
167
: `${node.hopsAway?.toString()} ${
168
- (node.hopsAway ?? 0 > 1) ? t("unit.hop.plural") : t("unit.hops_one")
+ (node.hopsAway ?? 0) > 1 ? t("unit.hop.plural") : t("unit.hop.one")
169
} ${t("nodesTable.connectionStatus.away")}`
170
: t("unknown.longName")}
171
{node?.viaMqtt === true ? t("nodesTable.connectionStatus.viaMqtt") : ""}
0 commit comments