[BUG] Update a member webhook also triggers for new member

I noticed that creating a webhook for “member.updated” makes the webhook trigger even when a new member arrives…

Is it only me? I am using this hook in Make.com I see the logs of what has been passed from this webhook.

See here below, created_at and updated_at (both previous/current) have the same time

{
  "member": {
    "current": {
      "id": "memberidhere",
      "uuid": "iremovedthisuuid",
      "email": "redacted@mail.com",
      "name": "Name",
      "note": null,
      "geolocation": "{redacted"}",
      "subscribed": true,
      "created_at": "2025-04-23T14:54:13.000Z",
      "updated_at": "2025-04-23T14:54:13.000Z",
      "labels": [],
      "subscriptions": [],
      "avatar_image": "redacted",
      "comped": false,
      "email_count": 0,
      "email_opened_count": 0,
      "email_open_rate": null,
      "status": "free",
      "last_seen_at": "2025-04-23T14:54:13.000Z",
      "newsletters": [
        {
          "id": "redacted",
          "name": "Newsletter",
          "description": "",
          "status": "active"
        },
        {
          "id": "redacted",
          "name": "Newsletter2",
          "description": "",
          "status": "active"
        }
      ]
    },
    "previous": {
      "last_seen_at": null,
      "updated_at": "2025-04-23T14:54:13.000Z"
    }
  }
}