feat(doctor profile): implement unclaimed doctor handling and UI adjustments
This commit is contained in:
+1
-1
@@ -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(
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user