7 lines
169 B
Plaintext
7 lines
169 B
Plaintext
adminDeleteInquiry: (id: number, token: string) =>
|
|
fetchApi<{ message: string }>(`/contact/admin/inquiries/${id}`, {
|
|
method: "DELETE",
|
|
token,
|
|
}),
|
|
|