Skip to content

Commit e36ac9e

Browse files
committed
chore: format
1 parent a1864ef commit e36ac9e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
run: |
4343
git remote add docs https://github.com/react-native-async-storage/react-native-async-storage.github.io.git
4444
- name: Deploy Docs with mike
45-
run: |
45+
run: |
4646
mike deploy -r docs ${{ steps.version.outputs.versionDocs }} -u --push latest
4747
mike set-default -r docs ${{ steps.version.outputs.versionDocs }} --push

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ const storage = createAsyncStorage("appDB");
8080

8181
async function demo() {
8282
await storage.setItem("userToken", "abc123");
83-
83+
8484
const token = await storage.getItem("userToken");
8585
console.log("Stored token:", token); // abc123
86-
86+
8787
await storage.removeItem("userToken");
8888
}
8989
```

docs/api/usage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ await userStorage.setItem("username", "doe_john");
5252
// previously stored value is overriden
5353
await userStorage.setItem("username", "john_doe");
5454

55-
5655
let username = await userStorage.getItem("username");
5756
console.log(username); // "john_doe"
5857

0 commit comments

Comments
 (0)