From 75a8ca43817dab7e4d2dbf4af526bf31ab29e706 Mon Sep 17 00:00:00 2001 From: Frost <81682916+Bear-Frost@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:24:14 +0800 Subject: [PATCH] Fix typo in attributes object: 'aria-diabled' to 'aria-disabled' --- api-documentation/draggable/usedraggable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-documentation/draggable/usedraggable.md b/api-documentation/draggable/usedraggable.md index 914741a..5a685e0 100644 --- a/api-documentation/draggable/usedraggable.md +++ b/api-documentation/draggable/usedraggable.md @@ -131,7 +131,7 @@ For this reason, the `useDraggable` hook sets the `tabindex="0"` attribute by de attributes: { role: string; tabIndex: number; - 'aria-diabled': boolean; + 'aria-disabled': boolean; 'aria-roledescription': string; 'aria-describedby': string; },