From 6e4458d63946aa6bbf06f4b897a0b9769c85a3b4 Mon Sep 17 00:00:00 2001 From: raheemelassadi <85327929+raheemelassadi@users.noreply.github.com> Date: Sun, 18 Aug 2024 02:06:58 -0700 Subject: [PATCH] Fixed Typo on API Page Changed "results" to "result." break any basic functionality, but could "results" in infinite change-detection loops --- docs/src/pages/docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/docs/api.md b/docs/src/pages/docs/api.md index 9060a109..a260cbbb 100644 --- a/docs/src/pages/docs/api.md +++ b/docs/src/pages/docs/api.md @@ -7,7 +7,7 @@ title: API ## Memoize your Props! -The React Charts `` component has a few options that need to be **stable** or **memoized using either `React.useMemo` or `React.useCallback`**. Using an unstable option incorrectly shouldn't severly break any basic functionality, but could results in infinite change-detection loops in your app or at the very least, your charts will be severly non-performant. If an option says it needs to be stable, it's not kidding around! +The React Charts `` component has a few options that need to be **stable** or **memoized using either `React.useMemo` or `React.useCallback`**. Using an unstable option incorrectly shouldn't severly break any basic functionality, but could result in infinite change-detection loops in your app or at the very least, your charts will be severly non-performant. If an option says it needs to be stable, it's not kidding around! ## Data Model