From 75fa0f7edd463016539295e89c2b6899bf8f1a19 Mon Sep 17 00:00:00 2001 From: Jon Winsley Date: Tue, 8 Oct 2024 13:24:56 -0400 Subject: [PATCH] fixing typo (#16) --- .../02.problem.module-resolution/README.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/03.client-components/02.problem.module-resolution/README.mdx b/exercises/03.client-components/02.problem.module-resolution/README.mdx index 249bbbe..d964621 100644 --- a/exercises/03.client-components/02.problem.module-resolution/README.mdx +++ b/exercises/03.client-components/02.problem.module-resolution/README.mdx @@ -27,7 +27,7 @@ createFromFetch(promise, { moduleBaseURL }) ``` - Because `react-server-dom-esm` is the one performing the dymamic import, all + Because `react-server-dom-esm` is the one performing the dynamic import, all imports will be relative to that module. On the client, we're loading it from [esm.sh](https://esm.sh), so we'll want to make sure we give the full URL to our server including the origin.