patrick fixed calling wrong export

Co-authored-by: Patrick Fic <patrick@thinkimex.com>
This commit is contained in:
jfrye122
2023-05-15 13:57:01 -04:00
parent ccaa0fd450
commit dc798cd92f
2 changed files with 22 additions and 18 deletions

View File

@@ -10,7 +10,7 @@ import { View, Text, FlatList, RefreshControl } from "react-native";
import { useQuery } from "@apollo/client";
import { createStructuredSelector } from "reselect";
import { useTranslation } from "react-i18next";
import { ClockedinListItem } from "../time-ticket-items/clockedin-list-item.component";
import ClockedinListItem from "../time-ticket-items/clockedin-list-item.component";
// import { setTmTicketJobId } from "../../redux/app/app.actions";
@@ -38,9 +38,9 @@ export function EmployeeClockedInList({ technician }) {
);
if (loading) return <ActivityIndicator color="dodgerblue" size="large" />;
if (error) return <ErrorDisplay errorMessage={error.message} />;
console.log("EmployeeClockedInList, QUERY_ACTIVE_TIME_TICKETS data:", data);
// if (data) () => {setTmTicketJobId(data)}
// if (data) () => {setTmTicketJobId(data)}
const onRefresh = async () => {
return refetch();
@@ -50,13 +50,15 @@ export function EmployeeClockedInList({ technician }) {
<View>
{data.timetickets.length > 0 ? (
<View>
<Text style={{paddingLeft:12, paddingTop:14}}>You are already clocked in to the following job(s):</Text>
<Text style={{ paddingLeft: 12, paddingTop: 14 }}>
You are already clocked in to the following job(s):
</Text>
<FlatList
data={data.timetickets}
refreshControl={
<RefreshControl refreshing={loading} onRefresh={onRefresh} />
}
renderItem={(object) => <ClockedinListItem ticket={object.item} />}
renderItem={(object) => <ClockedinListItem ticket={object.item} />}
// setTmTicketJobId={setTmTicketJobId}
/>
</View>