This commit is contained in:
smfahim25 2025-03-20 15:59:17 +06:00
parent 27339ba1bd
commit 7103e802b0

View file

@ -7,12 +7,13 @@ export const getAllDesign = async (token: string) => {
headers: {
Authorization: `Bearer ${token}`,
"Content-Type": "application/json",
}
},
});
const data = await response.json();
console.log(response);
return data;
} catch (error: any) {
console.log(error);
return { status: 500, message: error.message, token };
}
}
};