From b54092cbfc4a487cee8fb19c00760285331b8506 Mon Sep 17 00:00:00 2001 From: nzambello Date: Fri, 19 Jul 2024 10:18:21 +0300 Subject: [PATCH] docs: fix MemoriNewDialogState event detail in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3df8208f..b2334943 100644 --- a/README.md +++ b/README.md @@ -333,7 +333,7 @@ Or, you can listen to the `MemoriNewDialogState` event on the document: ```js document.addEventListener('MemoriNewDialogState', e => { - console.log('Memori state changed:', e.details); + console.log('Memori state changed:', e.detail); }); ```