From c08cb2b2707c0664eb674829d523ae8b236a5343 Mon Sep 17 00:00:00 2001 From: Tim Dorr Date: Tue, 13 Aug 2024 22:11:23 -0400 Subject: [PATCH] exact prop isn't needed in React Router v6 Fixes #4728 --- .../essentials/part-6-performance-normalization.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/essentials/part-6-performance-normalization.md b/docs/tutorials/essentials/part-6-performance-normalization.md index 60fd5ba8ef..8599736c92 100644 --- a/docs/tutorials/essentials/part-6-performance-normalization.md +++ b/docs/tutorials/essentials/part-6-performance-normalization.md @@ -137,11 +137,11 @@ As we've seen before, we can take data from one `useSelector` call, or from prop As usual, we will add routes for these components in ``: ```tsx title="App.tsx" - - + + // highlight-start - - + + // highlight-end ```