fix(file name wrong): fixed the name of the file for getCompanies
This commit is contained in:
17
frontend/src/lib/querys/forklifts/getCompanies.ts
Normal file
17
frontend/src/lib/querys/forklifts/getCompanies.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { queryOptions } from "@tanstack/react-query";
|
||||
import axios from "axios";
|
||||
|
||||
export function getCompanies() {
|
||||
return queryOptions({
|
||||
queryKey: ["getCompanies"],
|
||||
queryFn: () => fetch(),
|
||||
staleTime: 5000,
|
||||
refetchOnWindowFocus: true,
|
||||
});
|
||||
}
|
||||
|
||||
const fetch = async () => {
|
||||
const { data } = await axios.get("/lst/api/forklifts/companies");
|
||||
|
||||
return data.data;
|
||||
};
|
||||
Reference in New Issue
Block a user