diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-21 16:33:37 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-21 16:33:37 -0700 |
commit | 866b2220ab3d2be7b742b672c956ad28f7685190 (patch) | |
tree | 5b30c6d3324cb16dea416ba743a53c16285e1369 | |
parent | 595004f3cd0c7b9aba4d58a09913dc37ada6e4f2 (diff) |
Organize imports
-rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index f41487c9..dbfb3a4a 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -1,6 +1,6 @@ import {RouteProp} from '@react-navigation/native'; import {StackNavigationProp} from '@react-navigation/stack'; -import React, {Fragment, useCallback, useEffect, useState} from 'react'; +import React, {Fragment, useEffect, useState} from 'react'; import { Alert, Image, @@ -16,6 +16,7 @@ import { import {MentionInput} from 'react-native-controlled-mentions'; import {Button, normalize} from 'react-native-elements'; import {useDispatch, useSelector} from 'react-redux'; +import FrontArrow from '../../assets/icons/front-arrow.svg'; import {SearchBackground} from '../../components'; import {CaptionScreenHeader} from '../../components/'; import TaggLoadingIndicator from '../../components/common/TaggLoadingIndicator'; @@ -31,7 +32,6 @@ import {RootState} from '../../store/rootReducer'; import {ProfilePreviewType} from '../../types'; import {SCREEN_WIDTH, StatusBarHeight} from '../../utils'; import {mentionPartTypes} from '../../utils/comments'; -import FrontArrow from '../../assets/icons/front-arrow.svg'; /** * Upload Screen to allow users to upload posts to Tagg |