Skip to content

Commit 86cdc75

Browse files
committed
rm
1 parent 00e16c5 commit 86cdc75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils/cache/async_storage_cache.react_native.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { getDefaultAsyncStorage } from "../import.react_native/@react-native-asy
2121
export class AsyncStorageCache<V> implements AsyncCache<V> {
2222
public readonly operation = 'async';
2323
private asyncStorage = getDefaultAsyncStorage();
24-
24+
2525
async get(key: string): Promise<V | undefined> {
2626
const value = await this.asyncStorage.getItem(key);
2727
return value ? JSON.parse(value) : undefined;

0 commit comments

Comments
 (0)