Fix wrong property in docs (#2593)

Co-authored-by: Koen Reefman <koen.reefman@ing.com>
This commit is contained in:
Koen Reefman 2025-10-27 10:41:05 +01:00 committed by GitHub
parent b74d312bc0
commit f385bed336
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -162,7 +162,7 @@ No backdrop, hides on escape, prevents scrolling while opened, and focuses the b
export const otherOverrides = () => {
const cfg = {
hasBackdrop: false,
hidesOnEscape: true,
hidesOnEsc: true,
preventsScroll: true,
elementToFocusAfterHide: document.body,
};
@ -192,7 +192,7 @@ Configuration passed to `config` property:
```js
{
hasBackdrop: false,
hidesOnEscape: true,
hidesOnEsc: true,
preventsScroll: true,
elementToFocusAfterHide: document.body
}