removed duplicate imports

This commit is contained in:
Nouman Tahir 2022-10-19 17:52:06 +05:00
parent 2fdb115042
commit f430f67242
6 changed files with 1 additions and 6 deletions

View File

@ -12,7 +12,6 @@ import ROUTES from '../../../../constants/routeNames';
// Component // Component
import TagView from './tagView'; import TagView from './tagView';
import { useNavigation } from '@react-navigation/native';
/* /*
* Props Name Description Value * Props Name Description Value

View File

@ -21,7 +21,6 @@ import CommentsView from '../view/commentsView';
import { useAppSelector } from '../../../hooks'; import { useAppSelector } from '../../../hooks';
import { updateCommentCache } from '../../../redux/actions/cacheActions'; import { updateCommentCache } from '../../../redux/actions/cacheActions';
import { CommentCacheStatus } from '../../../redux/reducers/cacheReducer'; import { CommentCacheStatus } from '../../../redux/reducers/cacheReducer';
import { useNavigation } from '@react-navigation/native';
const CommentsContainer = ({ const CommentsContainer = ({
author, author,

View File

@ -10,7 +10,6 @@ import HeaderView from '../view/headerView';
import { AccountContainer, ThemeContainer } from '../../../containers'; import { AccountContainer, ThemeContainer } from '../../../containers';
import { parseReputation } from '../../../utils/user'; import { parseReputation } from '../../../utils/user';
import { toggleQRModal } from '../../../redux/actions/uiAction'; import { toggleQRModal } from '../../../redux/actions/uiAction';
import { useNavigation } from '@react-navigation/native';
const HeaderContainer = ({ const HeaderContainer = ({
selectedUser, selectedUser,

View File

@ -5,7 +5,6 @@ import { useNavigation } from '@react-navigation/native';
import { default as ROUTES } from '../../../constants/routeNames'; import { default as ROUTES } from '../../../constants/routeNames';
import styles from './parentPostStyles'; import styles from './parentPostStyles';
import { useNavigation } from '@react-navigation/native';
const ParentPost = ({ post }) => { const ParentPost = ({ post }) => {
const navigation = useNavigation(); const navigation = useNavigation();

View File

@ -13,7 +13,7 @@ import PostCardView from '../view/postCardView';
import { default as ROUTES } from '../../../constants/routeNames'; import { default as ROUTES } from '../../../constants/routeNames';
import { useAppDispatch } from '../../../hooks'; import { useAppDispatch } from '../../../hooks';
import { showProfileModal } from '../../../redux/actions/uiAction'; import { showProfileModal } from '../../../redux/actions/uiAction';
import { useNavigation } from '@react-navigation/native';
/* /*
* Props Name Description Value * Props Name Description Value
*@props --> props name here description here Value Type Here *@props --> props name here description here Value Type Here

View File

@ -16,7 +16,6 @@ import postUrlParser from '../../../utils/postUrlParser';
// Component // Component
import SearchModalView from '../view/searchModalView'; import SearchModalView from '../view/searchModalView';
import { useNavigation } from '@react-navigation/native';
/* /*
* Props name Description Value * Props name Description Value