Uh oh!
There was an error while loading. Please reload this page.
fix(web): resolve Vite sourcemap and supports warnings - #9343
Conversation
- Enable CSS sourcemaps for sourcemapped builds - Correct backdrop-filter supports variants
Thread transfer impact✅ Thread transfer remains within every enforced ceiling.
Baseline: Scenario and decoded snapshot size10 historical turns, 5 command tools per turn, 878.9 KiB retained MCP result per historical turn, and a 1.05 MiB retained result in the measured turn.
Updated in place by a trusted workflow. PR artifacts are strictly validated and never executed. |
ApprovabilityVerdict: Approved at Macroscope's review found this PR approvable — This is a narrow maintenance fix that corrects existing CSS feature-query syntax and enables development CSS sourcemaps to match the established sourcemap setting. It adds no new capability, does not change production bundle sourcemap behavior or product defaults, and does not suppress static-analysis diagnostics. You can add or adjust custom eligibility rules. Learn more. |
Uh oh!
There was an error while loading. Please reload this page.
## What's Changed * chore(ci): only run check-run agents on vouched contributors by @juliusmarminge in pingdotgg/t3code#9298 * fix(web): stop remounting markdown on every activity delta by @juliusmarminge in pingdotgg/t3code#9306 * fix(pull-requests): keep cached PR chrome on reopen by @maria-rcks in pingdotgg/t3code#9294 * feat(environments): draw each environment as the machine it runs on by @juliusmarminge in pingdotgg/t3code#9299 * feat(web): apply and remove labels from the pull request tab by @juliusmarminge in pingdotgg/t3code#9313 * fix(sidebar): collapse settled and snoozed shelves by default by @maria-rcks in pingdotgg/t3code#9314 * refactor(media): unify file and media previews across clients by @juliusmarminge in pingdotgg/t3code#9253 * fix(chat): keep live tool labels in present tense by @maria-rcks in pingdotgg/t3code#9316 * chore: audit lint directives and move plugin allowlists into config by @juliusmarminge in pingdotgg/t3code#9300 * chore(ci): narrow the Effect conventions check-run agent by @juliusmarminge in pingdotgg/t3code#9321 * refactor(mobile): style plain views with Uniwind classes instead of the theme bridge by @juliusmarminge in pingdotgg/t3code#9322 * fix(dev): share dev servers on the loopback Vite actually binds by @juliusmarminge in pingdotgg/t3code#9324 * fix(web): line up the titlebar wordmark label and version pill by @tristanmanchester in pingdotgg/t3code#9255 * fix(web): make the diff layout toggle a persisted setting by @juliusmarminge in pingdotgg/t3code#9326 * chore: dedupe lightningcss and tailwind node bindings by @juliusmarminge in pingdotgg/t3code#9331 * chore: upgrade vite-plus to 0.3.0 by @juliusmarminge in pingdotgg/t3code#9327 * feat(web): add a file tree to the diff panel and pull request code tab by @juliusmarminge in pingdotgg/t3code#9330 * feat(web): add PageUp/PageDown chat navigation by @Yash-Singh1 in pingdotgg/t3code#9315 * fix(web): collapse PR header actions to icons when narrow by @maria-rcks in pingdotgg/t3code#9334 * fix(web): resolve Vite sourcemap and supports warnings by @juliusmarminge in pingdotgg/t3code#9343 * feat(web): choose whether links open in the default browser or in T3 Code by @juliusmarminge in pingdotgg/t3code#9339 * fix(web): add press feedback to buttons by @maria-rcks in pingdotgg/t3code#9349 * feat(web): add customizable project icons by @saphid in pingdotgg/t3code#9137 * fix(mobile): stop indented code overflowing Android chat bubbles by @Adamulek123 in pingdotgg/t3code#9347 * fix(web): let the pull request list use wide screens by @juliusmarminge in pingdotgg/t3code#9351 * feat: display native app and browser icons in work logs by @Yash-Singh1 in pingdotgg/t3code#9093 ## New Contributors * @tristanmanchester made their first contribution in pingdotgg/t3code#9255 **Full Changelog**: pingdotgg/t3code@v0.0.39-nightly.20260903.1262...v0.0.39-nightly.20260903.1265 Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.39-nightly.20260903.1265
What Changed
supportsvariants in the composer surfaces so Vite no longer reports invalid selector warnings.Why
The web build emitted sourcemap and CSS supports warnings, while the pull request action header contained unnecessary responsive complexity. This change removes the warning sources and simplifies the affected UI and scroll handling.
UI Changes
The pull request detail header now uses consistently labeled action buttons and badges. No before/after screenshots are included.
Checklist
Note
Low Risk
Class-string and Vite CSS sourcemap wiring only; no auth, data, or API changes, with intended visual behavior unchanged.
Overview
This PR quiets web build warnings by fixing Tailwind
not-supports-[...]syntax on chat composer glass fallbacks and aligning CSS sourcemap settings with the existing build flag.In
ComposerBannerandComposerSurface, the backdrop-filter fallback variants now wrap theorcondition in an extra pair of parentheses (e.g.not-supports-[((backdrop-filter:blur(1px))_or_(...))]), so Vite/Tailwind stop treating the selector as invalid while keeping the same “no backdrop blur → solid surface” behavior.vite.config.tssetscss.devSourcemapto matchbuild.sourcemap(buildSourcemap !== false), because@tailwindcss/viteonly emits CSS sourcemaps when dev sourcemaps are on—otherwise rolldown reportsSOURCEMAP_BROKENon sourcemapped builds.Reviewed by Cursor Bugbot for commit b583147. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
Fix Tailwind
not-supportssyntax in chat components and enable Vite CSS sourcemapsbackdrop-filter OR webkit-backdrop-filtercondition inside the negated supports query across chat UI components in ComposerBanner.tsx and ComposerSurface.tsxbuildSourcemapis not explicitly falseMacroscope summarized b583147.