Having some issues with conditional card for harmony hub

Hi i made a sensor

- platform: template
  sensors:
    tv_aktivitet:
      value_template: '{{ state_attr("remote.harmony_hub", "current_activity") }}'
      friendly_name: 'TV'

this is working great, im trying to make a lovelace view that only shows tv channels when current activity is TV, but im having issues

      - type: conditional
        conditions:
          - entity:  sensor.tv_aktivitet
            state: "TV"
        card:
          - type: glance
            entities:
              - entity: remote.harmony_hub
                image: /local/mdi-remote/test2.png
                tap_action:
                  action: call-service
                  service: remote.send_command
                  service_data:
                    command: 3
                    device: 45010091
                    entity_id: remote.harmony_hub

Im getting “No card type configured.”

i got entities to work, code under, but i really want glance

      - type: conditional
        conditions:
          - entity:  sensor.tv_aktivitet
            state: "TV"
        card:
          title: TV Kanaler
          type: entities
          entities: 
            - entity: remote.harmony_hub
              image: /local/mdi-remote/test2.png
              name: NRK Super
              tap_action:
                action: call-service
                service: remote.send_command
                service_data:
                  command: 3
                  device: 45010091
                  entity_id: remote.harmony_hub

got it to work

###Kanaler###
      - type: conditional
        conditions:
          - entity:  sensor.tv_aktivitet
            state: "TV"
        card:
          title: TV Kanaler
          type: glance
          show_header_toggle: false
          entities: 
            - entity: remote.harmony_hub
              image: /local/mdi-remote/nrksuper.png
              name: NRK Super
              show_state: false
              tap_action:
                action: call-service
                service: remote.send_command
                service_data:
                  command: 3
                  device: 45010091
                  entity_id: remote.harmony_hub
            - entity: remote.harmony_hub
              image: /local/mdi-remote/tvnorge.png
              name: TV Norge
              show_state: false
              tap_action:
                action: call-service
                service: remote.send_command
                service_data:
                  command: 5
                  device: 45010091
                  entity_id: remote.harmony_hub