-  app/(application)/(user)/delete-account.tsx
-  assets/images/constants/logo-hipmi_back.png

Fix:
- app/(application)/(user)/_layout.tsx
- assets/images/constants/logo-hipmi.png
- components/Grid/GridCustom.tsx
- screens/Profile/ListPage.tsx
- screens/Profile/menuDrawerSection.tsx
- service/api-client/api-user.ts

### No Issue
This commit is contained in:
2025-11-19 17:40:35 +08:00
parent 868e96a54a
commit 0a2aa71013
8 changed files with 117 additions and 4 deletions

View File

@@ -10,3 +10,7 @@ export async function apiAllUser({ search }: { search: string }) {
return response.data;
}
export async function apiDeleteUser({id}:{id: string}) {
const response = await apiConfig.delete(`/mobile/user/${id}`);
return response.data;
}