Issue Patterns
Recurring bugs detected across all AgentQA scans. Every pattern is fingerprinted, clustered, and enriched with AI root-cause analysis. Use this to spot systemic issues before they spread.
2 unique patterns tracked
Mobile Layout Overflow
Mobile Layout Overflow
A child element or container on /sales exceeds the viewport width (375px) without proper responsive constraints. The element's computed width or padding/margin values exceed 100vw or the parent container's max-width is not constrained to the viewport.
1. Audit the page layout using DevTools at 375px viewport; identify which element(s) overflow by checking computed width and max-width properties in the CSS cascade. 2. Apply max-width: 100% and overflow-x: hidden to overflowing container; verify no child elements use fixed pixel widths that exceed 375px minus padding. 3. Ensure the viewport meta tag is present and correctly configured: <meta name="viewport" content="width=device-width, initial-scale=1">. 4. Test at 375px in Chrome DevTools device emulation to confirm horizontal scroll is eliminated.