handle download poster and qrcode, fix to show timestamp, add pagination to doctors page

This commit is contained in:
ehsan
2025-10-02 02:52:26 +03:30
parent 645da72002
commit e1510b142b
21 changed files with 394 additions and 154 deletions
+1 -2
View File
@@ -26,11 +26,10 @@ async function Doctors({ searchParams }) {
const params = buildDoctorParams(newSearchParams);
const response = await axios.get(`${API_URL}/api/v1/doctors`, {
params,
});
doctors = response.data.data;
doctors = response.data;
} catch (error) {
console.error("Error fetching doctors:", error);
}