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

# July 31 2024

## Versions

* Latest React SDK: [2.0.24](https://www.npmjs.com/package/@veltdev/react)
* Latest Non-React SDK: [2.0.24](https://www.npmjs.com/package/@veltdev/client)
* Latest Types: [2.0.24](https://www.npmjs.com/package/@veltdev/types)

## Added the option to Subscribe/Unsubscribe at Thread Level

Within the comments dialog options dropdown, we have added subscribe/unsubscribe wireframes. [Learn more](/ui-customization/features/async/comments/comment-dialog/subcomponents/options-dropdown).

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltCommentDialogWireframe.Options.Content.Notification>
        <VeltCommentDialogWireframe.Options.Content.Notification.Subscribe />
        <VeltCommentDialogWireframe.Options.Content.Notification.Unsubscribe />
    </VeltCommentDialogWireframe.Options.Content.Notification>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-comment-dialog-options-dropdown-content-notification-wireframe>
        <velt-comment-dialog-options-dropdown-content-notification-subscribe-wireframe></velt-comment-dialog-options-dropdown-content-notification-subscribe-wireframe>
        <velt-comment-dialog-options-dropdown-content-notification-unsubscribe-wireframe></velt-comment-dialog-options-dropdown-content-notification-unsubscribe-wireframe>
    </velt-comment-dialog-options-dropdown-content-notification-wireframe>
    ```
  </Tab>
</Tabs>

## Added the Option to Add a Custom Initial in the User Object

Users can now add an optional custom initial within the [user object](https://docs.velt.dev/api-reference/sdk/models/data-models#user). If the initial is not provided in the identify call or the Add User REST API, we will automatically create it using the name.

## Added Search on Organization Names

We have added the feature to search on organization names in the contact list, if present.

## Added Delete Button on the Thread Header

You can now add a delete button within the comments dialog thread header. [Learn more](/ui-customization/features/async/comments/comment-dialog/wireframes#header).

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltCommentDialogWireframe.DeleteButton>
      <span>Delete</span>
    </VeltCommentDialogWireframe.DeleteButton>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-comment-dialog-delete-button-wireframe>
      <span>Delete</span>
    </velt-comment-dialog-delete-button-wireframe>
    ```
  </Tab>
</Tabs>
