diff options
author | Ivan Chen <ivan@tagg.id> | 2021-04-20 17:16:46 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-04-20 17:21:46 -0400 |
commit | bae0136cb1939302b758249a1978251bd37aaee8 (patch) | |
tree | 8788895fe72bef062a4de3b3b8e245d091dc3c1f /src/routes/Routes.tsx | |
parent | 5ff7cab4bd36337b2c86e3d4915a6fc3ceef1ddb (diff) |
linted
Diffstat (limited to 'src/routes/Routes.tsx')
-rw-r--r-- | src/routes/Routes.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/routes/Routes.tsx b/src/routes/Routes.tsx index 04c081da..6fc766ab 100644 --- a/src/routes/Routes.tsx +++ b/src/routes/Routes.tsx @@ -1,4 +1,3 @@ -import AsyncStorage from '@react-native-community/async-storage'; import messaging from '@react-native-firebase/messaging'; import React, {useContext, useEffect, useState} from 'react'; import DeviceInfo from 'react-native-device-info'; @@ -11,7 +10,7 @@ import { updateNewVersionAvailable, } from '../store/actions'; import {RootState} from '../store/rootReducer'; -import {userLogin, connectChatAccount} from '../utils'; +import {connectChatAccount, userLogin} from '../utils'; import Onboarding from './onboarding'; import NavigationBar from './tabs'; |