(Fix) - serviceMap zooms correctly

This commit is contained in:
Ankit Nayan 2021-06-07 20:58:02 +05:30
parent bc3f16d3de
commit 12911db945

View File

@ -79,9 +79,9 @@ export const getZoomPx = (): number => {
if (width < 1400) { if (width < 1400) {
return 190; return 190;
} else if (width > 1400 && width < 1700) { } else if (width > 1400 && width < 1700) {
return 400; return 380;
} else if (width > 1700) { } else if (width > 1700) {
return 485; return 470;
} }
return 190; return 190;
}; };