From 10c696cf8aeb46571970c2f0d8ca01ba152b408b Mon Sep 17 00:00:00 2001 From: Ori Pomerantz Date: Wed, 22 May 2024 18:52:39 -0500 Subject: [PATCH] Update add-system.mdx --- docs/pages/guides/hello-world/add-system.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/guides/hello-world/add-system.mdx b/docs/pages/guides/hello-world/add-system.mdx index 0b873d5210..332290097c 100644 --- a/docs/pages/guides/hello-world/add-system.mdx +++ b/docs/pages/guides/hello-world/add-system.mdx @@ -120,7 +120,7 @@ In this case, the vanilla getting started front end. }; const decrement = async () => { - const tx = await worldContract.write.decrement(); + const tx = await worldContract.write.app__decrement(); await waitForTransaction(tx); return getComponentValue(Counter, singletonEntity); };