Advancement running twice in the same tick

I'm not sure why but a certain advancement keeps running twice when activated and it's just screwing with everything I don't know why.

  "criteria": {
    "init": {
      "trigger": "minecraft:recipe_crafted",
      "conditions": {
        "recipe_id": "minecraft:turtle_helmet",
        "ingredients": [
          {
            "items": "minecraft:turtle_scute"
          }
        ]
      }
    },
    "damage_1": {
      "trigger": "minecraft:recipe_crafted",
      "conditions": {
        "recipe_id": "minecraft:turtle_helmet",
        "ingredients": [
          {
            "components": {
              "minecraft:custom_data": {
                "custom_damage": {
                  "damage": 1
                }
              }
            }
          }
        ]
      }
    },
    "damage_2": {
      "trigger": "minecraft:recipe_crafted",
      "conditions": {
        "recipe_id": "minecraft:turtle_helmet",
        "ingredients": [
          {
            "components": {
              "minecraft:custom_data": {
                "custom_damage": {
                  "damage": 2
                }
              }
            }
          }
        ]
      }
    }
  },
  "requirements": [
    [
      "init",
      "damage_1",
      "damage_2"
    ]
  ],
  "rewards": {
    "function": "twill:run"
  }
}```
Continue to help post