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

# January 18, 2022

> The latest updates to Daily's real-time audio and video APIs.

## daily-js 0.22.0

* 🖥 Added a new `nonfatal-error` [event](/reference/daily-js/events/error-events#nonfatal-error) type to report screen share issues. Now if there is an error when a participant starts screen sharing, you can catch it with the following:

```javascript theme={null}
call.on('nonfatal-error', (evt) => {
  if (evt.type === 'screen-share-error') {
    console.log(evt.errorMsg);
  }
});
```

* 💬 Updated `app-message` [event](/reference/daily-js/events/messaging-events#app-message) to support strictly typed custom payloads.
* 🍽 Added ability to serve up `daily-js` using [webpack-dev-server](https://webpack.js.org/configuration/dev-server/).
* 🐛 Other bug fixes and improvements.

## react-native-daily-js 0.20.0

* ✅ Check out the [release notes](https://github.com/daily-co/react-native-daily-js/releases/tag/react-native-daily-js-2022-01-18-0.20.0).

## Daily Prebuilt

* ✨ Launched `/giphy` shortcut in text chat for sending gifs.
* 👨‍👩‍👧‍👦 Introduced an `enable_people_ui` [room](/reference/rest-api/rooms/get-room#response-config-enable-people-ui) and [domain](/reference/rest-api/domain/set-domain-config#body-properties-enable-people-ui) property that configures whether the People panel displays in [Daily Prebuilt](/docs/prebuilt).
* 🎥 Implemented confirmation menu when a participant starts or stops a recording.
* 🖥 Improved error handling for screen sharing.
* 🐞 Other bug fixes and improvements.

## Daily Dashboard

* 🚪 Added `enable_people_ui` property option to the [Create room](https://dashboard.daily.co/rooms/create) page.
* 🚦 Streamlined onboarding process when opening a Daily account.
* 🪲 Other bug fixes and improvements.
