diff --git a/screens/moves/MoveListScreen.tsx b/screens/moves/MoveListScreen.tsx index 0b5fd31..faffe3a 100644 --- a/screens/moves/MoveListScreen.tsx +++ b/screens/moves/MoveListScreen.tsx @@ -1,16 +1,16 @@ // screens/moves/MoveListScreen.tsx -import React from 'react'; -import { Button, FlatList, ScrollView, StyleSheet, View } from 'react-native'; -import { StackNavigationProp } from '@react-navigation/stack'; -import { RootStackParamList } from "../../navigation/navigationTypes"; -import { useDispatch, useSelector } from 'react-redux'; -import { deleteMove, getMoves } from '../../redux/actions/moveActions'; -import { MoveState } from "../../redux/reducers/moveReducer"; -import { AppDispatch } from "../../redux/store"; -import MoveListItem from "../../components/MoveListItem"; -import { MOVE_DETAIL, MOVE_FORM, MOVE_LIST } from "../../navigation/constants"; -import { RouteProp, useFocusEffect } from "@react-navigation/native"; +import React from 'react'; +import { Button, FlatList, StyleSheet, View } from 'react-native'; +import { StackNavigationProp } from '@react-navigation/stack'; +import { RootStackParamList } from "../../navigation/navigationTypes"; +import { useDispatch, useSelector } from 'react-redux'; +import { deleteMove, getMoves } from '../../redux/actions/moveActions'; +import { MoveState } from "../../redux/reducers/moveReducer"; +import { AppDispatch } from "../../redux/store"; +import MoveListItem from "../../components/MoveListItem"; +import { MOVE_DETAIL, MOVE_FORM, MOVE_LIST } from "../../navigation/constants"; +import { RouteProp, useFocusEffect } from "@react-navigation/native"; type MoveListScreenNavigationProp = StackNavigationProp; type MoveListScreenRouteProp = RouteProp; @@ -37,30 +37,28 @@ const MoveListScreen = ({ navigation }: Props) => { ); return ( - -