Small request: In both the user dashboard enabled by Frontend Submission, and in Favorite Posts, the post status slug is used for status. I suggest using the post status label instead. For example, this would replace "publish" with "Published". I do this in the email I send to users for post status changes.
$status = get_post_status( $postid );
$status_obj = get_post_status_object( $status );
if ($status_obj) {
$status = $status_obj->label;
}
Thank you.