Date and time showing as a group but also between weather and sun icon at top of interface

I have the below in my groups.yaml file

  date_and_time:
 view: yes
 icon: mdi:home 
 entities:
   - group.date_time
 date_time:
name: Date and Time
entities:
  - sensor.time
  - sensor.date

and I have the below in my config.yaml file

# Sensors
sensor:
# Weather prediction
- platform: yr


- platform: time_date
display_options:
  - 'time'
  - 'date'
  - 'date_time'

But on the Hassio home screen I see the below:

Is there a way of removing the date & time circle from between yr Symbol and Sun?

Thanks and sorry, still trying to get to grips with Hassio!

Sure just add the sensor to a group.

Like the way you added date and time:

name: Date and Time
  entities:
    - sensor.time
    - sensor.date
    - sensor.date_time   #  added the sensor here

Your indentation is off (corrected here) and you are also using the old ‘states’ UI. Lovelace is now the default UI. What version of HA are you running?