I tried recreating a simple mentions example here https://codesandbox.io/s/slatejs-poc-9j4f20?file=/src/App.tsx
The issue that I am facing is that, whenever I delete any void element, all of them are deleted.
I tried recreating a simple mentions example here https://codesandbox.io/s/slatejs-poc-9j4f20?file=/src/App.tsx
The issue that I am facing is that, whenever I delete any void element, all of them are deleted.

The problem is that your
initialValueis not correctly formatted. Yourdeserializefunction returns an array containing only text nodes:While you should have a common parent node for them:
Demo with the correct
initialValue