aq-fe-framework 0.1.225 → 0.1.226
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3488,6 +3488,7 @@ import {
|
|
3488
3488
|
} from "@mantine/core";
|
3489
3489
|
import { useForm as useForm20 } from "@mantine/form";
|
3490
3490
|
import { useMutation as useMutation5 } from "@tanstack/react-query";
|
3491
|
+
import axios from "axios";
|
3491
3492
|
import Link from "next/link";
|
3492
3493
|
import { useRouter as useRouter3 } from "next/navigation";
|
3493
3494
|
import { useEffect as useEffect12, useState as useState9 } from "react";
|
@@ -3619,7 +3620,7 @@ function useM_Account_Sigin() {
|
|
3619
3620
|
const mutation = useMutation5({
|
3620
3621
|
mutationFn: async (values) => {
|
3621
3622
|
const endpoint = await utils_config_getBaseUrl() + "/Account/SignIn";
|
3622
|
-
const result = await
|
3623
|
+
const result = await axios.post(endpoint, values);
|
3623
3624
|
return result.data;
|
3624
3625
|
}
|
3625
3626
|
});
|