Skip to content

Commit

Permalink
Merge pull request #39 from Lorg0n/feature/NumberOfTracked
Browse files Browse the repository at this point in the history
fix: fix bug
  • Loading branch information
olexh authored Jun 15, 2024
2 parents dbdf182 + d86916d commit c1ce806
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Followings = () => {

return (
<Block>
<Header title={`Відстежується (${filteredFollowings.length})`} onClick={handleOpenFollowingsModal} />
<Header title={`Відстежується (${list.length})`} onClick={handleOpenFollowingsModal} />
<div className="flex flex-col gap-6">
{filteredFollowings.map((item) => (
<FollowingItem data={item} key={item.reference} />
Expand Down

0 comments on commit c1ce806

Please sign in to comment.