From f2210a61cfd64bf4d8c60c1951e2dd35820b21a5 Mon Sep 17 00:00:00 2001 From: spookyuser <16196262+spookyuser@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:59:27 +0200 Subject: [PATCH] fix example variable --- docs/framework/react/guides/custom-plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/framework/react/guides/custom-plugins.md b/docs/framework/react/guides/custom-plugins.md index f1b1ccf7..dd06b469 100644 --- a/docs/framework/react/guides/custom-plugins.md +++ b/docs/framework/react/guides/custom-plugins.md @@ -62,7 +62,7 @@ class CustomEventClient extends EventClient { } // This is where the magic happens, it'll be used throughout your application. -export const DevtoolsEventClient = new FormEventClient() +export const DevtoolsEventClient = new CustomEventClient() ``` ## Event Client Integration