Woocommerce电子邮件添加了一个<br>

I am trying to find a way to get rid of extra < br > in woocommerce emails. It adds < br > in after Request and also in the date:enter image description here

         <h2>
         <a class="link" href="<?php echo esc_url( admin_url( 'post.php?post=' . $order->get_id() . '&action=edit' ) ); ?>">
          <b><?php  printf(__( 'Request #%s test', 'woocommerce' ), $order->get_order_number() ); ?></b>
          </a> 
           (<?php  strip_tags(
              printf( '<time datetime="%s">%s</time>', 
                  $order->get_date_created()->format( 'c' ), 
                wc_format_datetime( $order->get_date_created() ) ), 
                '<br>' ); 
            ?>)
         </h2>