From bfc3871cca0c64d8fcfb85ba0212d1d65167a9ba Mon Sep 17 00:00:00 2001 From: rcanales1810 <160544301+rcanales1810@users.noreply.github.com> Date: Tue, 14 Apr 2026 22:21:32 -0500 Subject: [PATCH] Update instructions for data fetching with axios Clarify that new entries will be addressed later. --- src/content/2/en/part2c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/2/en/part2c.md b/src/content/2/en/part2c.md index 2075d08482e..5aa1d3405d0 100644 --- a/src/content/2/en/part2c.md +++ b/src/content/2/en/part2c.md @@ -584,6 +584,6 @@ Error: listen EADDRINUSE 0.0.0.0:3001 it means that port 3001 is already in use by another application, e.g. in use by an already running json-server. Close the other application, or change the port in case that doesn't work. -Modify the application such that the initial state of the data is fetched from the server using the axios-library. Complete the fetching with an [Effect hook](https://react.dev/reference/react/useEffect). +Modify the application such that the initial state of the data is fetched from the server using the axios-library. Complete the fetching with an [Effect hook](https://react.dev/reference/react/useEffect). Don't worry if the new entries are not added to the server; we'll get to that in the next part.