From d6f5f87988eebb199239336ecfa292ef1d025654 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Bryx=C3=AD?= Date: Tue, 17 Dec 2024 10:14:10 +0100 Subject: [PATCH] fix: cond -> guard Fixes #519 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12b6707a..a60e6ab1 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ const AuthenticatedToggle = setup({ TOGGLE: [ { target: 'active', - cond: 'isAuthenticated', + guard: 'isAuthenticated', }, { actions: ['notify'] }, ],