When the problematic pages with the browser zooming are detected, Lighthouse flags the pages.
![[maximum-scale] attribute is less than 5](https://screpy.com/wp-content/uploads/2020/11/meta-viewport.png)
In order for the audit fail to occur, a page must contain <meta name = “viewport”> with one of the elements below.
user-scalable = a content attribute with "no"parameter, or- A content attribute with a maximum-scale parameter’s value less than 5
How to pass the audit?
What you have to do is come to the viewpoint metatag. Then remove the user-scalable = "no" parameter here. Also, after your check, you need to make sure that the parameter called maximum-scale is fixed to a value of 5 or more.