From 1758a2fa3f16dd3f7487d91dd545e18bb1af5714 Mon Sep 17 00:00:00 2001 From: Krzysztof Borowy <6444719+krizzu@users.noreply.github.com> Date: Mon, 23 Feb 2026 11:13:36 +0100 Subject: [PATCH] remove token --- .github/workflows/release.yml | 1 - docs/faq.md | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ddb325e7..4b7dc538 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,4 +29,3 @@ jobs: GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} GITHUB_NAME: ${{ vars.GH_BOT_NAME }} GITHUB_EMAIL: ${{ vars.GH_BOT_EMAIL }} - NPM_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }} diff --git a/docs/faq.md b/docs/faq.md index 1d1691d0..8deca147 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -6,7 +6,7 @@ title: FAQ ## General -### How do I store objects, arrays, or other non-string values? +### How do I store objects, arrays or other non-string values? AsyncStorage only stores strings. Serialize values with `JSON.stringify` before writing, and `JSON.parse` when reading: