Friendly name has 'Level' appended to it

I have a number of Leviton Z-wave switches and for some reason HA is adding Level to the end of my friendly names. I have one in my Dining room and I have a friendly name setup like so:

customize:
  light.dining_level_9:
    friendly_name: Dining
    emulated_hue_name: Dining

But on the HA web page and in the emulated hue the device is referred to as, “Dining Level.”

The only place I can find “Level” is in the ozw config file which shows it as:

  <Node id="9" name="Dining" location="Dining" basic="4" generic="17" specific="4" type="Multilevel Scene Switch" listening="true" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
 		<Manufacturer id="1d" name="Leviton">
			Product type="1b03" id="334" name="VRMX1-1LZ Multilevel Scene Switch" />
		</Manufacturer>
 		<CommandClasses>
 			<CommandClass id="32" name="COMMAND_CLASS_BASIC" version="1" mapping="38">
 				<Instance index="1" />
 			</CommandClass>
 			<CommandClass id="38" name="COMMAND_CLASS_SWITCH_MULTILEVEL" version="1">
 				<Instance index="1" />
 				<Value type="byte" genre="user" instance="1" index="0" label="Level" units="" read_only="false" write_only="false" verify_changes="false" poll_intensity="0" min="0" max="255" value="0" />

Anyone know how to get the name to just be Dining?

I would guess that your customize block is not loading. You’ve defined things the right way in this snippet. Perhaps you don’t have customize as a child of homeassistant? It’s a child, not a sibling. Check homeassistant.log (same folder as YAML) for errors.