From b51f5a6b8a3ea93584434ad1a1c8bd26ec6d35ff Mon Sep 17 00:00:00 2001 From: Jude Giordano <44903893+judegiordano@users.noreply.github.com> Date: Mon, 26 Jul 2021 12:57:33 -0400 Subject: [PATCH] Add Commas For Example JSON when a user copies the example JSON payloads, there is an error just from a missing comma --- src/pages/build-apps/guides/data-storage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/build-apps/guides/data-storage.md b/src/pages/build-apps/guides/data-storage.md index cf2f7c3b..0cf06203 100644 --- a/src/pages/build-apps/guides/data-storage.md +++ b/src/pages/build-apps/guides/data-storage.md @@ -61,7 +61,7 @@ const storage = new Storage({ userSession }); let fileName = 'car.json'; let fileData = { - color: 'blue' + color: 'blue', electric: true, purchaseDate: '2019-04-03', }; @@ -143,7 +143,7 @@ Set an additional `app` property within `options` to retrieve data for a user as ```js const options = { - app: 'https://example.org' + app: 'https://example.org', username: 'markmhendrickson.id.blockstack', }; ```