Custom Post Type duplicating slug for new posts

SOLVED:

Silly mistake that I made was using wp_query inside the custom metabox output…

face palm

If you found this post googling the same issue, you need to use a different query method as it conflicts with the page.

Using this:

$query = get_posts( array( 'post_type' => 'forums', 'post_status' => 'publish' ) );

fixed this problem.