Skip to content

Commit b9d038a

Browse files
committed
chore: formatting
1 parent 49a5597 commit b9d038a

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@ It provides a simple API compatible with the [Web Storage API](https://developer
1717
Compatibility table for React Native:
1818

1919
| React Native | Minimum Version |
20-
|--------------|-----------------|
20+
| ------------ | --------------- |
2121
| ios/android | 0.76 |
2222
| macOS | 0.78 |
2323
| visionOS | 0.79 |
2424
| windows | 0.79 |
2525

26-
2726
Other components:
2827

2928
| Component | Version |
30-
|------------------|---------|
29+
| ---------------- | ------- |
3130
| kotlin | 2.1.0 |
3231
| android min sdk | 24 |
3332
| ios min target | 13 |

docs/api/db-naming.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ Creates database named `user-1234`:
7676

7777
![web-db-naming-1.png](../assets/db-naming-web-1.png)
7878

79-
8079
### Windows and visionOS
8180

82-
Creating multiple storages is not supported on Windows and visionOS targets.
81+
Creating multiple storages is not supported on Windows and visionOS targets.

docs/api/usage.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Data in one storage instance is isolated, ensuring that different names do not s
4141

4242
visionOS does not support scoped storages. It falls back to the previous v2 implementation, which provides a single storage per application.
4343

44-
4544
## Using a storage
4645

4746
After creating a storage instance, the storage is ready to use.

docs/migration-to-3.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@ AsyncStorage v3 introduces a few breaking changes to simplify the API and make i
99
Compatibility table for React Native:
1010

1111
| React Native | Minimum Version |
12-
|--------------|-----------------|
12+
| ------------ | --------------- |
1313
| ios/android | 0.76 |
1414
| macOS | 0.78 |
1515
| visionOS | 0.79 |
1616
| windows | 0.79 |
1717

18-
1918
Other components:
2019

2120
| Component | Version |
22-
|------------------|---------|
21+
| ---------------- | ------- |
2322
| kotlin | 2.1.0 |
2423
| android min sdk | 24 |
2524
| ios min target | 13 |

packages/async-storage/apple/AsyncStorage.mm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#import "AsyncStorage.h"
2+
23
#import "RNCAsyncStorage.h" // legacy storage
34

45
#if !TARGET_OS_VISION
@@ -8,7 +9,7 @@
89
@implementation AsyncStorage
910
RCT_EXPORT_MODULE(RNAsyncStorage)
1011

11-
#if !TARGET_OS_VISION // visionos not supported for SharedStorage
12+
#if !TARGET_OS_VISION // visionos not supported for SharedStorage
1213
RCT_EXPORT_METHOD(getValues
1314
: (nonnull NSString *)dbName keys
1415
: (nonnull NSArray *)keys resolve

0 commit comments

Comments
 (0)