I just run into the same issue and this was the only post I was able to find.
Since there was no solution – I tracked down the issue… here is how you can fix this:
1. open …./plugins/bp-direct-menus/inc/frontend-noajax.inc.php
2. go to line 73 or near it. You should be looking at the line:
$groupcount = groups_get_total_group_count();
3. change that to:
$groupcount = groups_get_total_member_count();
4. All should be working fine now.