From 90fe7ff1106ef643dc38c06bdf45db35c196f60b Mon Sep 17 00:00:00 2001 From: David McAfee Date: Mon, 6 Feb 2023 16:34:26 -0800 Subject: [PATCH] fix(data): fix DataStore typo --- src/fragments/lib/datastore/js/other-methods.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fragments/lib/datastore/js/other-methods.mdx b/src/fragments/lib/datastore/js/other-methods.mdx index a6c304c1e09..3095f00c714 100644 --- a/src/fragments/lib/datastore/js/other-methods.mdx +++ b/src/fragments/lib/datastore/js/other-methods.mdx @@ -10,7 +10,7 @@ await DataStore.clear(); -If your app is has authentication implemented, it is recommended to call `DataStore.clear()` on signin/signout to remove any user-specific data. This method is often important to use for shared device scenarios or where you need to purge the local on-device storage of records for security/privacy concerns. +If your app has authentication implemented, it is recommended to call `DataStore.clear()` on sign-in/sign-out to remove any user-specific data. This method is often important to use for shared device scenarios or where you need to purge the local on-device storage of records for security/privacy concerns.