Ah i noticed same issue and I have found a solution for it as well
edit single.php
move the following code
<?php get_template_part( 'content', 'single' ); ?>
after
<?php while ( have_posts() ) : the_post(); ?>
so it should be like
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>