//import { LstCard } from "@/components/extendedUI/LstCard"; import { getinventoryCheck } from "@/utils/querys/logistics/getInventoryCheck"; import { invColumns } from "@/utils/tableData/InventoryCards/inventoryColumns"; import { InvTable } from "@/utils/tableData/InventoryCards/inventoryData"; import { useQuery } from "@tanstack/react-query"; //import { CircleX } from "lucide-react"; //import { Suspense } from "react"; //import { toast } from "sonner"; export default function INVCheckCard(props: any) { const { age, rowType } = props.data; //console.log(props.data); const { data, isError, isLoading } = useQuery( getinventoryCheck({ age: age }) ); if (isLoading) return
There was an error getting the inv.