Skip to content
This repository has been archived by the owner on Mar 10, 2021. It is now read-only.

Commit

Permalink
fix(deps): update AsyncStorage import
Browse files Browse the repository at this point in the history
BREAKING CHANGE:

Updates to use community maintained AsyncStorage.
  • Loading branch information
Jimbomaniak authored and ryanlntn committed Jul 26, 2019
1 parent d9414d2 commit b8c7787
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/ReduxPersist.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import immutablePersistenceTransform from '../Services/ImmutablePersistenceTransform'
import { AsyncStorage } from 'react-native'
import AsyncStorage from '@react-native-community/async-storage'

// More info here: https://shift.infinite.red/shipping-persistant-reducers-7341691232b1
const REDUX_PERSIST = {
Expand Down
2 changes: 1 addition & 1 deletion templates/Rehydration.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ReduxPersist from '../Config/ReduxPersist'
import { AsyncStorage } from 'react-native'
import AsyncStorage from '@react-native-community/async-storage'
import { persistStore } from 'redux-persist'
import StartupActions from '../Redux/StartupRedux'
import DebugConfig from '../Config/DebugConfig'
Expand Down

0 comments on commit b8c7787

Please sign in to comment.