Skip to content

Commit

Permalink
refactor: clean up imports in AppNavigation and remove unused useSele…
Browse files Browse the repository at this point in the history
…ctor
  • Loading branch information
pushpender-singh-ap committed Feb 5, 2025
1 parent 76456c8 commit de89b02
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Navigation/AppNavigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ import {AboutUs, Search} from '../Screens';
import {BottomNavigation} from './BottomNavigation';
import UpdateScreen from '../Screens/Update';
import AnimeVideo from '../Screens/Anime/Video';
import {useSelector} from 'react-redux';
import {Details} from '../Screens/Anime';
import {ComicBook, ComicDetails, SeeAll} from '../Screens/Comic';
import {ViewAll} from '../Screens/Anime/Home/ViewAll';
import {MangaDetails} from '../InkNest-Externals/Screens/Manga/Details/MangaDetails';
import {MangaBook} from '../InkNest-Externals/Screens/Manga/Book/MangaBook';
import {MangaHome} from '../InkNest-Externals/Screens/Manga/Home/Home';
import {MangaViewAll} from '../InkNest-Externals/Screens/Manga/Home/ViewAll';
import MangaSearch from '../InkNest-Externals/Screens/Manga/Search/Search';
import {MangaHome} from '../InkNest-Externals/Screens/Manga/Home';

const Stack = createNativeStackNavigator();

Expand All @@ -24,7 +23,6 @@ const Stack = createNativeStackNavigator();
* @returns {JSX.Element} The Stack Navigator with defined screens and options.
*/
export function AppNavigation() {
const animeActive = useSelector(state => state?.data?.Anime);
return (
<Stack.Navigator
screenOptions={{
Expand Down

0 comments on commit de89b02

Please sign in to comment.