Hello Jackson,
I am sorry for the delay of this reply.
Currently there is no settings to control the ordering of the apps. You can however manually go to your /components/com_easysocial/views/dashboard/view.html.php and at line 46,
$options = array('view' => 'dashboard', 'uid' => $this->my->id, 'key' => SOCIAL_TYPE_USER);
// Replace with the below code to order by title
$options = array('view' => 'dashboard', 'uid' => $this->my->id, 'key' => SOCIAL_TYPE_USER, 'sort' => 'title');
Hope these help.