How it works What it captures Compare Pricing Blog Join the waitlist
v1.1.08 Patch
5 Jun, 2026

Stabilisation: login loop fixed, capture race fixed, dead code removed

This release closed out the stabilisation pass before build-out begins. Nothing new shipped. Everything that was already in the extension got verified, fixed, or cleaned up.

The biggest fix was the login loop. When a diagnosis returned an auth error, the extension was routing to the login screen without clearing the capture from storage. On the next open, the capture was still there, the user clicked Diagnose again, hit the same error, and ended up in a loop. The fix adds a storage clear at both points in the code where auth failure can happen.

The Vision Capture race was also confirmed and fixed. The popup was opening and polling for capture data before content.js had finished writing it. The polling interval was widened from 200ms to 350ms, giving the write enough time to land.

Several pieces of dead code were removed: a side-panel block that was never reachable, an unused auth message handler in the service worker, and 2 popup functions that referenced HTML elements that don’t exist.

What it answers

– why does lens keep taking me back to the login screen
– why does lens show the idle state instead of my capture
– what was in the lens stabilisation pass
– why does lens not show my element after capturing it
– what dead code was removed from lens

Why we built it

The login loop was a direct user report. The Vision Capture race was confirmed live via diagnostics logs. Neither could go into build-out unfixed.