From ad6f9806942b11b92e2cf543a73e94509a0f47c7 Mon Sep 17 00:00:00 2001 From: Damien Leroy <10438692+ShiiFu@users.noreply.github.com> Date: Wed, 5 Jun 2024 06:48:46 +0200 Subject: [PATCH] fix(docs): fix typo in autocomplete documentation page --- apps/docs/content/docs/components/autocomplete.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/components/autocomplete.mdx b/apps/docs/content/docs/components/autocomplete.mdx index 6b127b7fbc..6581b08057 100644 --- a/apps/docs/content/docs/components/autocomplete.mdx +++ b/apps/docs/content/docs/components/autocomplete.mdx @@ -254,7 +254,7 @@ The following example uses the `defaultFilter` prop to filter the list of option ### Asynchronous Filtering -Autocomplete supports asynchronous filtering, in the example below we are using the [useAyncList](https://react-spectrum.adobe.com/react-stately/useAsyncList.html) function +Autocomplete supports asynchronous filtering, in the example below we are using the [useAsyncList](https://react-spectrum.adobe.com/react-stately/useAsyncList.html) function from [react-aria](https://react-spectrum.adobe.com) to handle asynchronous loading and filtering of data from a server.