From 0375647d84c15ee3363b0afbdcde0573acab30ba Mon Sep 17 00:00:00 2001 From: Matthieu Bosquet Date: Thu, 6 Nov 2025 10:29:49 +0000 Subject: [PATCH] Fix #6 --- docs/guides/building_your_first_solid_app_with_ldo_and_react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/building_your_first_solid_app_with_ldo_and_react.md b/docs/guides/building_your_first_solid_app_with_ldo_and_react.md index 62e935d..54c6960 100644 --- a/docs/guides/building_your_first_solid_app_with_ldo_and_react.md +++ b/docs/guides/building_your_first_solid_app_with_ldo_and_react.md @@ -401,7 +401,7 @@ npm run build:ldo ### Finding Where to Save Data -A common question in Solid is: "Where do I save my app's data?" The best practice is to create a dedicated folder for your app inside the user's Pod. We can find the root of their storage space using the sp:storage property from their profile. +A common question in Solid is: "Where do I save my app's data?" One possibility is to create a dedicated folder for your app inside the user's Pod. We can find the root of their storage space using the sp:storage property from their profile. Let's update **src/Blog.tsx** to find the root container and create a folder for our app.