diff --git a/components/Buttons/create-time-ticket-button.component.jsx b/components/Buttons/create-time-ticket-button.component.jsx index 0063bd8..df87a22 100644 --- a/components/Buttons/create-time-ticket-button.component.jsx +++ b/components/Buttons/create-time-ticket-button.component.jsx @@ -3,18 +3,23 @@ import { Text } from "react-native"; import { Button } from "react-native-paper"; import { useTranslation } from "react-i18next"; import { connect } from "react-redux"; +import { useNavigation } from "@react-navigation/native"; + + // const mapDispatchToProps = (dispatch) => ({ // signOut: () => dispatch(employeeSignOut()), // }); -export function AddTimeTicketButton({ doOnPress }) { +export function AddTimeTicketButton() { + + const navigation = useNavigation(); const { t } = useTranslation(); return (