Fix wrong connectors counter
* Changed connect counter * Fix linter Co-authored-by: Sergii Petrychenko <spetrichenko@provectus.com> Co-authored-by: Roman Zabaluev <rzabaluev@provectus.com>
This commit is contained in:
parent
344d9768d7
commit
f5d421d9f0
1 changed files with 1 additions and 2 deletions
|
@ -24,7 +24,6 @@ export interface ListProps {
|
|||
|
||||
const List: React.FC<ListProps> = ({
|
||||
connectors,
|
||||
connects,
|
||||
areConnectsFetching,
|
||||
areConnectorsFetching,
|
||||
fetchConnects,
|
||||
|
@ -55,7 +54,7 @@ const List: React.FC<ListProps> = ({
|
|||
title="Connects"
|
||||
fetching={areConnectsFetching}
|
||||
>
|
||||
{connects.length}
|
||||
{connectors.length}
|
||||
</Indicator>
|
||||
|
||||
<div className="column">
|
||||
|
|
Loading…
Add table
Reference in a new issue