added new style

This commit is contained in:
2025-09-24 14:05:51 -06:00
parent ab0a3030ae
commit 0b537d1e83
8 changed files with 150 additions and 147 deletions
+15
View File
@@ -0,0 +1,15 @@
import apiClient from "@/app/lib/apiClient";
export async function changePass(data: any) {
try {
const response = await apiClient.post("/user/change-password", data);
return response.data;
} catch (error: any) {
const msg =
error.response?.data?.error ||
error.message ||
"Error desconocido al cobrar impresión";
return { error: msg };
}
}
//IO
+1 -1
View File
@@ -1,4 +1,4 @@
import apiClient from "@/app/lib/apiClient";
import apiClient from "./apiClient";
export async function PostImpressions(data: any) {
try {