> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corti.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# template.deleteConfirmationDismissed

> Emitted when the user dismisses the template delete dialog.

## Event Properties

| Field          | Value                                    |
| -------------- | ---------------------------------------- |
| `event`        | `"template.deleteConfirmationDismissed"` |
| `confidential` | `boolean`                                |
| `payload`      | `object`                                 |

<Tabs>
  <Tab title="Public Payload">
    | Field          | Type         | Description |
    | -------------- | ------------ | ----------- |
    | `templateId`   | `string`     | -           |
    | `templateType` | `"personal"` | -           |

    #### Example

    ```json theme={null}
    {
      "event": "template.deleteConfirmationDismissed",
      "confidential": false,
      "payload": {
        "templateId": "template_personal_1",
        "templateType": "personal"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field          | Type         | Description |
    | -------------- | ------------ | ----------- |
    | `templateId`   | `string`     | -           |
    | `templateType` | `"personal"` | -           |

    #### Example

    ```json theme={null}
    {
      "event": "template.deleteConfirmationDismissed",
      "confidential": true,
      "payload": {
        "templateId": "template_personal_1",
        "templateType": "personal"
      }
    }
    ```
  </Tab>
</Tabs>
