improvement: treatments UI/UX updated again to minimize clicking and scrolling.

This commit is contained in:
2026-08-19 23:59:37 +03:30
parent 29c639f5a1
commit d2f07c0ed3
33 changed files with 1651 additions and 744 deletions

View File

@@ -61,6 +61,11 @@ export const casesApi = {
return response.data;
},
deleteDraft: async (id: string): Promise<{ success: boolean }> => {
const response = await apiClient.delete(`/cases/${id}`);
return response.data;
},
uploadLineAttachments: async (
caseId: string,
lineClientId: string,