feedback tab

This commit is contained in:
jackiettran
2025-10-31 16:48:18 -04:00
parent 99aa0b3bdc
commit 16272ba373
13 changed files with 812 additions and 1 deletions

View File

@@ -293,4 +293,9 @@ export const conditionCheckAPI = {
getAvailableChecks: () => api.get("/condition-checks"),
};
export const feedbackAPI = {
submitFeedback: (data: { feedbackText: string; url?: string }) =>
api.post("/feedback", data),
};
export default api;