diff --git a/docs/vue/your-first-app/5-adding-mobile.md b/docs/vue/your-first-app/5-adding-mobile.md index 28c60aa6bf3..728e1ffb83c 100644 --- a/docs/vue/your-first-app/5-adding-mobile.md +++ b/docs/vue/your-first-app/5-adding-mobile.md @@ -57,7 +57,7 @@ Next, add a new bit of logic in the `loadSaved` function. On mobile, we can dire ```tsx const loadSaved = async () => { - const photoList = await Storage.get({ key: PHOTO_STORAGE }); + const photoList = await Preferences.get({ key: PHOTO_STORAGE }); const photosInPreferences = photoList.value ? JSON.parse(photoList.value) : []; // If running on the web...