It's still due to that tab being rendered twice. If you need it to be available on every tab instead of just the About tab then you need to remove it from the About tab. Edit the cb_profile_about field and change the following.
From:
Code:
[cb:if reason="profile" or reason="list"]<div class="row no-gutters"><div class="col-sm">[cb:usertab tab="60" formatting="divs" /]</div><div class="col-sm-3 pl-sm-2 text-right">[cb:usertab tab="21" formatting="divs" /]</div></div>[/cb:if]
To:
Code:
[cb:if reason="profile" or reason="list"][cb:usertab tab="60" formatting="divs" /][/cb:if]
This will remove it from the About tab and allow normal tab rendering of the User Status tab.