Gas and Electric energy usage from the meter using rtl_433

jumping into the energy use side of HA. I am able to pull electric and gas usage from my gas and electric meter via the RTL_433 add-on, then into mqtt.(mqtt.yaml) sample consumption data for electric looks like “4703043” and Gas “849654” - I am in the US.

when I try and configure gas in the energy module the sensor ‘gas_meter_consumption" won’t show up under “add gas source” as a choice in the pull down. I do see "electric_meter_consumption’ sensor and added it - but not sure I have the settings in mqtt correct. would love some suggestions for my config below.

- name: "Gas Meter Consumption"
  state_topic: "rtl_433/433/devices/SCMplus/99247441/Consumption"
  unique_id: "gas_meter_consumption"
  device_class: 'gas'
  state_class: 'total_increasing'
  unit_of_measurement: "ft³"
  value_template: "{{ value }}"
  qos: 0  
  
- name: "Electric Meter Consumption"
  state_topic: "rtl_433/433/devices/ERT-SCM/55769943/consumption_data"
  unique_id: "electric_meter_consumption"
  device_class: 'energy'
  state_class: 'total_increasing'
  unit_of_measurement: "Wh"
  value_template: "{{ value }}"
  qos: 0