🏠 Internal
- CI / Screenshot tests: the Playwright screenshot job started failing with
browserType.launch: Executable doesn't existafter Playwright 1.60.0 was published. The screenshots Docker image was pinned to thev1.58.0-jammybase but installedplaywright/@playwright/testunpinned, so the runner jumped to 1.60.0 while the image only shipped the 1.58 browser binaries. Bumped the base image tov1.60.0-jammy, pinned the install to1.60.0, and aligned@playwright/testinpackage.jsonto^1.60.0so the runner and the bundled browsers always match.