feat(doctor profile): implement unclaimed doctor handling and UI adjustments

This commit is contained in:
hamed
2026-07-12 10:00:03 +03:30
parent ce05e464c4
commit 42ac6645d5
5 changed files with 195 additions and 25 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ function cityFilterParams(scope) {
async function getDoctorUrls(baseUrl, scope) {
const doctors = await fetchAllPages('/api/v1/doctors', cityFilterParams(scope));
return doctors
.filter((d) => d?.uuid)
.filter((d) => d?.uuid && d?.owner_status === 'claimed')
.map((d) =>
withLastModified(
{