Browse Source
Merge pull request #532 from Hunter275/node-count-off-by-one
Subtract one from node count
pull/541/head
Hunter Thornsberry
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/components/Sidebar.tsx
|
|
|
@ -58,7 +58,7 @@ export const Sidebar = ({ children }: SidebarProps) => { |
|
|
|
page: "channels", |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: `Nodes (${nodes.size})`, |
|
|
|
name: `Nodes (${nodes.size - 1})`, |
|
|
|
icon: UsersIcon, |
|
|
|
page: "nodes", |
|
|
|
}, |
|
|
|
|