chore: bump web submodule for #117 (CI unblock)#728
Conversation
Picks up lobu-ai/owletto#117 which deletes an unused useLocation call and fixes z.record(z.unknown()) → z.record(z.string(), z.unknown()) on the pinned zod 4.4.3. Together they were the two failing TS errors that have been blocking Build and Push Images on every main push since the UX sweep landed.
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe ChangesWeb Submodule Update
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Summary
Picks up lobu-ai/owletto-web#117 which fixes the two pre-existing TS errors that have been blocking
Build and Push Imageson every main push since the UX sweep:useLocationwas imported + called inevents-tab/index.tsxbut the value was unused. Dropped.z.record(z.unknown())is a type + runtime error on the pinned zod 4.4.3 (API now requires(keyType, valueType)). Replaced withz.record(z.string(), z.unknown()).After this lands, the next push to main should successfully build and push an image, allowing the deploy pipeline to roll forward with #725, #726, and #727 (action_modes).
Test plan
cd packages/web && bun run buildpasses locally.Build and Push Imagessucceeds on main after merge.Summary by CodeRabbit