> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/events/virtualbackgrounddisabled.md).

# virtualBackgroundDisabled

Emitted when the virtual background is disabled for the local user - e.g. user explicitly disables it.

#### Sample payload

```json
{
  "type": "virtualBackgroundDisabled",
}
```

#### Sample subscription code

```javascript
sambaFrame.on('virtualBackgroundDisabled', (event) => {
  console.log('Virtual background was disabled for local user');
});
```
