mirror of
https://github.com/meshtastic/web.git
synced 2026-02-23 01:37:17 -05:00
Merge pull request #532 from Hunter275/node-count-off-by-one
Subtract one from node count
This commit is contained in:
@@ -58,7 +58,7 @@ export const Sidebar = ({ children }: SidebarProps) => {
|
||||
page: "channels",
|
||||
},
|
||||
{
|
||||
name: `Nodes (${nodes.size})`,
|
||||
name: `Nodes (${nodes.size - 1})`,
|
||||
icon: UsersIcon,
|
||||
page: "nodes",
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user