fix(admin): bump proton to fix runtime errors#1497
Merged
rohilsurana merged 4 commits intomainfrom Apr 1, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
✅ Files skipped from review due to trivial changes (2)
📝 WalkthroughSummary by CodeRabbit
WalkthroughUpdated Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Suggested reviewers
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Pull Request Test Coverage Report for Build 23831895582Details
💛 - Coveralls |
rohanchkrabrty
approved these changes
Mar 31, 2026
paanSinghCoder
approved these changes
Apr 1, 2026
- Add @tanstack/react-query and @connectrpc/connect-query to Vite dedupe config to prevent duplicate context instances between the app and SDK (fixes "No QueryClient set" error) - Bump @raystack/proton to match SDK version so SetOrganizationMemberRoleRequestSchema is available
8677caf to
fa737f5
Compare
This was referenced Apr 1, 2026
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes two runtime errors in the admin UI:
"SetOrganizationMemberRoleRequestSchema is not exported" — Admin app pinned an older
@raystack/protonmissing this schema. Bumped to match the SDK version.Potential "No QueryClient set" — pnpm can resolve separate copies of
@tanstack/react-queryfor the app (React 19) and SDK (React 18), creating isolated contexts. Added@tanstack/react-queryand@connectrpc/connect-queryto Vite'sresolve.dedupeto ensure a single instance is shared.Changes
web/apps/admin/package.json— bump@raystack/protonto0.1.0-0b6548eweb/apps/admin/vite.config.ts— add@tanstack/react-queryand@connectrpc/connect-querytoresolve.dedupeTest plan
pnpm run buildinweb/apps/adminpasses