Upgraded to 107 now unable to add cards

Recently upgraded from 105 to 107. When I try to add cards, it asks which cards I would like to add but I don’t see any options. I’ve cleared cache/cookies but still no luck. Any ideas what could be causing this?

If I create a new Lovelace Dashboard all the cards show when I try to add a new one, ask expected.
Possibly its something with one of the custom cards added previously? The raw configuration editor no longer shows Resources section where they were added.

Seems to be the way the code is ordered. Previously it was:

cards:
  type: entities
entities:
  - entity: light.bedroom_light
    name: Bedroom Light
  - entity: light.living_room_lights
    name: Living Room Lamps
  - entity: light.laboratory_light
    name: Downstairs Living Room
  - entity: light.snows_light
    name: Snows Light
  - entity: light.basement_office_light
    name: Basement Office Light
  - entity: light.basement_playroom_light
    name: Playroom Light
  - entity: light.furnace_light
    name: Furnace Light
  - entity: light.laundry_room_light
    name: Laundry Room Light
  - entity: light.bottom_of_stairs_switch
    name: Stairs Light
  - entity: light.drews_closet_light
    name: Drews Closet Light
  - entity: light.shelbys_closet_light
    name: Shelbys Closet Light
state_filter:
  - 'on'
type: entity-filter

Now what works is when the code is ordered:

type: entity-filter
entities:
  - entity: light.bedroom_light
    name: Bedroom Light
  - entity: light.living_room_lights
    name: Living Room Lamps
  - entity: light.laboratory_light
    name: Downstairs Living Room
  - entity: light.snows_light
    name: Snows Light
  - entity: light.basement_office_light
    name: Basement Office Light
  - entity: light.basement_playroom_light
    name: Playroom Light
  - entity: light.furnace_light
    name: Furnace Light
  - entity: light.laundry_room_light
    name: Laundry Room Light
  - entity: light.bottom_of_stairs_switch
    name: Stairs Light
  - entity: light.drews_closet_light
    name: Drews Closet Light
  - entity: light.shelbys_closet_light
    name: Shelbys Closet Light
state_filter:
  - 'on'
card:
  type: entities

I have exactly the same issue. Not sure when it broke, though, I’ve left my UI alone for a while.