Zigbee button firing two events

Hello,

I have two buttons (Konke circular buttons) that when single pressed, they send a zha event, followed by another duplicate event a few seconds later. This happens only for these type of buttons and only for a single press, not for double presses or a button hold.
The buttons have not had this issue the entire time they’ve been owned, perhaps a few versions ago.

Event after listening via Home Assistant Developer Tools:

Event 7 fired 11:08 PM:
{
    "event_type": "zha_event",
    "data": {
        "device_ieee": "14:b4:57:ff:fe:07:68:84",
        "unique_id": "14:b4:57:ff:fe:07:68:84:1:0x0006",
        "device_id": "f67df7c0707c9a39f9b8b0a74b63f435",
        "endpoint_id": 1,
        "cluster_id": 6,
        "command": "single",
        "args": {
            "press_type": "single",
            "command_id": 128
        },
        "params": {}
    },
    "origin": "LOCAL",
    "time_fired": "2022-06-20T22:08:59.888093+00:00",
    "context": {
        "id": "01G61JJVZGX9GW97AHSC860B2Y",
        "parent_id": null,
        "user_id": null
    }
}
Event 6 fired 11:08 PM:
{
    "event_type": "zha_event",
    "data": {
        "device_ieee": "14:b4:57:ff:fe:07:68:84",
        "unique_id": "14:b4:57:ff:fe:07:68:84:1:0x0006",
        "device_id": "f67df7c0707c9a39f9b8b0a74b63f435",
        "endpoint_id": 1,
        "cluster_id": 6,
        "command": "single",
        "args": {
            "press_type": "single",
            "command_id": 128
        },
        "params": {}
    },
    "origin": "LOCAL",
    "time_fired": "2022-06-20T22:08:53.847660+00:00",
    "context": {
        "id": "01G61JJP2Q3MR5ZS2DEFMYVMED",
        "parent_id": null,
        "user_id": null
    }
}

Any ideas how I can resolve this or work around the issue?