From 62dd9e088b83e9ada67f6dcbf3f62c8b836a2df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?RUBEN=20PE=C3=91A=20PARADA?= <46791460+rubenpenap@users.noreply.github.com> Date: Tue, 8 Apr 2025 17:54:47 -0400 Subject: [PATCH 1/3] fix: update title in README to reflect React Performance title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a4baf1a3..578e9434c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
-

🤯 Advanced React Patterns

+

React Performance 🚀

React is fast, until it isn't. Let's make your React app fast. From 6866fc0708710f589156cfd01e0919731cec9d89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?RUBEN=20PE=C3=91A=20PARADA?= <46791460+rubenpenap@users.noreply.github.com> Date: Wed, 9 Apr 2025 15:02:05 -0400 Subject: [PATCH 2/3] fix: typo in context name FootContext -> FooterContext --- exercises/02.context/02.problem.provider-component/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/02.context/02.problem.provider-component/index.tsx b/exercises/02.context/02.problem.provider-component/index.tsx index a9ae2f9e7..d57c7b9c0 100644 --- a/exercises/02.context/02.problem.provider-component/index.tsx +++ b/exercises/02.context/02.problem.provider-component/index.tsx @@ -10,7 +10,7 @@ const FooterContext = createContext<{ // 🐨 create a FooterProvider component here and move the color and name state // and context value to this component. -// 💰 Make sure to accept a children prop and render the FootContext with it +// 💰 Make sure to accept a children prop and render the FooterContext with it function useFooter() { const context = use(FooterContext) From 70a39205b956fb4a990c2fbe5ee8fdb59ce9845f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?RUBEN=20PE=C3=91A=20PARADA?= <46791460+rubenpenap@users.noreply.github.com> Date: Fri, 11 Apr 2025 12:38:54 -0400 Subject: [PATCH 3/3] fix: correct typo in import path for Exposed type in cities index file --- exercises/05.calculations/02.problem.worker/src/cities/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/05.calculations/02.problem.worker/src/cities/index.ts b/exercises/05.calculations/02.problem.worker/src/cities/index.ts index a594a6e80..3d13ba690 100644 --- a/exercises/05.calculations/02.problem.worker/src/cities/index.ts +++ b/exercises/05.calculations/02.problem.worker/src/cities/index.ts @@ -13,7 +13,7 @@ export function searchCities(filter: string) { // 🐨 you're going to want this: // import * as Comlink from 'comlink' -// 🐨 import the Exposed type from './fitler-cities.worker' +// 🐨 import the Exposed type from './filter-cities.worker' // 🐨 create a new Worker object out of the ./filter-cities.worker.ts module