Hue Items not added under right name

I have a deCONZ bridge connected to openHAB. I added a new switch, and it is recognized by both deCONZ and openHAB, however not under the name it is supposed to be.

Looking at the /sensors/ output of deCONZ I see the switch with the following configuration:

  "37": {
      "config": {
        "battery": null,
        "on": true,
        "reachable": true
      },
      "ep": 1,
      "etag": "e9ddb0975fef03dd2cfffcf53921dae3",
      "lastseen": "2021-01-10T01:15Z",
      "manufacturername": "LUMI",
      "mode": 1,
      "modelid": "lumi.sensor_switch",
            "name": "Living Room Switch",
      "state": {
        "buttonevent": 1002,
        "lastupdated": "2021-01-10T01:15:05.321"
      },
      "type": "ZHASwitch",
      "uniqueid": "00:15:8d:00:05:78:cc:1b-01-0006"
    },

The ID is “37”. I’m trying to add this switch as Thing:

switch     living-room-light-switch      "Living Room Light Switch"       [ id="37" ]

However the Switch keeps showing up under the “raw” ID in openHAB Inbox:

Discovery Result with UID 'deconz:switch:homezigbee:00158d000578cc1b010006' has been added.

That’s the above switch, the “uniqueid” matches. But openHAB does not add the requested name, and instead keeps using the switch with the “uniqueid” as name.

Any idea how I can make openHAB to use the “living-room-light-switch” name here?