Skip to content

Conversation

@wobsoriano
Copy link
Member

@wobsoriano wobsoriano commented Jul 30, 2025

Description

Fixes useCustomElementPortal to handle portaled icons in dynamically added menu items

Resolves USER-2492

Checklist

  • pnpm test runs as expected.
  • pnpm build runs as expected.
  • (If applicable) JSDoc comments have been added or updated for any package exports
  • (If applicable) Documentation has been updated

Type of change

  • 🐛 Bug fix
  • 🌟 New feature
  • 🔨 Breaking change
  • 📖 Refactoring / dependency upgrade / documentation
  • other:

Summary by CodeRabbit

  • New Features

    • Added a new page showcasing a customizable User Button with dynamic menu items that can be toggled on and off.
    • Introduced a route to access the dynamic User Button demo.
  • Bug Fixes

    • Resolved an issue where dynamic menu items in the User Button could lose their icons.
  • Tests

    • Added integration tests to verify that dynamic and static menu items in the User Button display their icons correctly.
  • Refactor

    • Improved internal handling of dynamic portal elements for better reliability.

@changeset-bot
Copy link

changeset-bot bot commented Jul 30, 2025

🦋 Changeset detected

Latest commit: 4c77325

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 8 packages
Name Type
@clerk/clerk-react Patch
@clerk/chrome-extension Patch
@clerk/elements Patch
@clerk/clerk-expo Patch
@clerk/nextjs Patch
@clerk/react-router Patch
@clerk/remix Patch
@clerk/tanstack-react-start Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel
Copy link

vercel bot commented Jul 30, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
clerk-js-sandbox ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 30, 2025 8:18pm

@wobsoriano wobsoriano changed the title fix(react): Resolve dynamic menu items losing icons fix(clerk-react): Resolve dynamic menu items losing icons Jul 30, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jul 30, 2025

📝 Walkthrough

"""

Walkthrough

This change set introduces a patch update to the "@clerk/clerk-react" package that fixes an issue where dynamic menu items lost their icons. A new React component (Page) is added, which conditionally renders dynamic menu items with icons inside a user button. This component is integrated into the router configuration under a new route /custom-user-button-dynamic-items. Corresponding integration tests verify that both static and dynamic menu items display their icons correctly. Additionally, the useCustomElementPortal utility hook is refactored to replace an indexed array with a Map keyed by element IDs for managing portal nodes, enhancing dynamic element handling without changing its external API.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~15–20 minutes

  • Complexity label: Moderate
  • Rationale: The review involves a new React component with conditional rendering and state management, router configuration updates, integration test additions verifying UI behavior, and a utility hook refactor affecting dynamic state array management. These changes span multiple files and require careful review of dynamic rendering and state logic, but do not introduce highly complex algorithms or extensive architectural changes.

Assessment against linked issues

Objective Addressed Explanation
UserButton.Action labelIcon should appear for conditionally rendered actions/links (USER-2492)

Assessment against linked issues: Out-of-scope changes

No out-of-scope changes found.
"""


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2581068 and 4c77325.

📒 Files selected for processing (1)
  • packages/react/src/utils/useCustomElementPortal.tsx (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/react/src/utils/useCustomElementPortal.tsx
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: semgrep-cloud-platform/scan
  • GitHub Check: Formatting | Dedupe | Changeset
  • GitHub Check: Build Packages
  • GitHub Check: semgrep/ci
  • GitHub Check: Analyze (javascript-typescript)

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@pkg-pr-new
Copy link

pkg-pr-new bot commented Jul 30, 2025

Open in StackBlitz

@clerk/agent-toolkit

npm i https://pkg.pr.new/@clerk/agent-toolkit@6443

@clerk/astro

npm i https://pkg.pr.new/@clerk/astro@6443

@clerk/backend

npm i https://pkg.pr.new/@clerk/backend@6443

@clerk/chrome-extension

npm i https://pkg.pr.new/@clerk/chrome-extension@6443

@clerk/clerk-js

npm i https://pkg.pr.new/@clerk/clerk-js@6443

@clerk/dev-cli

npm i https://pkg.pr.new/@clerk/dev-cli@6443

@clerk/elements

npm i https://pkg.pr.new/@clerk/elements@6443

@clerk/clerk-expo

npm i https://pkg.pr.new/@clerk/clerk-expo@6443

@clerk/expo-passkeys

npm i https://pkg.pr.new/@clerk/expo-passkeys@6443

@clerk/express

npm i https://pkg.pr.new/@clerk/express@6443

@clerk/fastify

npm i https://pkg.pr.new/@clerk/fastify@6443

@clerk/localizations

npm i https://pkg.pr.new/@clerk/localizations@6443

@clerk/nextjs

npm i https://pkg.pr.new/@clerk/nextjs@6443

@clerk/nuxt

npm i https://pkg.pr.new/@clerk/nuxt@6443

@clerk/clerk-react

npm i https://pkg.pr.new/@clerk/clerk-react@6443

@clerk/react-router

npm i https://pkg.pr.new/@clerk/react-router@6443

@clerk/remix

npm i https://pkg.pr.new/@clerk/remix@6443

@clerk/shared

npm i https://pkg.pr.new/@clerk/shared@6443

@clerk/tanstack-react-start

npm i https://pkg.pr.new/@clerk/tanstack-react-start@6443

@clerk/testing

npm i https://pkg.pr.new/@clerk/testing@6443

@clerk/themes

npm i https://pkg.pr.new/@clerk/themes@6443

@clerk/types

npm i https://pkg.pr.new/@clerk/types@6443

@clerk/upgrade

npm i https://pkg.pr.new/@clerk/upgrade@6443

@clerk/vue

npm i https://pkg.pr.new/@clerk/vue@6443

commit: 4c77325

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 8c7e5bb and 4ea5caa.

📒 Files selected for processing (5)
  • .changeset/soft-jeans-pretend.md (1 hunks)
  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx (1 hunks)
  • integration/templates/react-vite/src/main.tsx (2 hunks)
  • integration/tests/custom-pages.test.ts (2 hunks)
  • packages/react/src/utils/useCustomElementPortal.tsx (1 hunks)
🧰 Additional context used
📓 Path-based instructions (13)
.changeset/**

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

Automated releases must use Changesets.

Files:

  • .changeset/soft-jeans-pretend.md
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

**/*.{js,jsx,ts,tsx}: All code must pass ESLint checks with the project's configuration
Follow established naming conventions (PascalCase for components, camelCase for variables)
Maintain comprehensive JSDoc comments for public APIs
Use dynamic imports for optional features
All public APIs must be documented with JSDoc
Provide meaningful error messages to developers
Include error recovery suggestions where applicable
Log errors appropriately for debugging
Lazy load components and features when possible
Implement proper caching strategies
Use efficient data structures and algorithms
Profile and optimize critical paths
Validate all inputs and sanitize outputs
Implement proper logging with different levels

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • packages/react/src/utils/useCustomElementPortal.tsx
  • integration/templates/react-vite/src/main.tsx
  • integration/tests/custom-pages.test.ts
**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml,yml}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Use Prettier for consistent code formatting

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • packages/react/src/utils/useCustomElementPortal.tsx
  • integration/templates/react-vite/src/main.tsx
  • integration/tests/custom-pages.test.ts
**/*.{ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Use proper TypeScript error types

**/*.{ts,tsx}: Always define explicit return types for functions, especially public APIs
Use proper type annotations for variables and parameters where inference isn't clear
Avoid any type - prefer unknown when type is uncertain, then narrow with type guards
Use interface for object shapes that might be extended
Use type for unions, primitives, and computed types
Prefer readonly properties for immutable data structures
Use private for internal implementation details
Use protected for inheritance hierarchies
Use public explicitly for clarity in public APIs
Prefer readonly for properties that shouldn't change after construction
Prefer composition and interfaces over deep inheritance chains
Use mixins for shared behavior across unrelated classes
Implement dependency injection for loose coupling
Let TypeScript infer when types are obvious
Use const assertions for literal types: as const
Use satisfies operator for type checking without widening
Use mapped types for transforming object types
Use conditional types for type-level logic
Leverage template literal types for string manipulation
Use ES6 imports/exports consistently
Use default exports sparingly, prefer named exports
Use type-only imports: import type { ... } from ...
No any types without justification
Proper error handling with typed errors
Consistent use of readonly for immutable data
Proper generic constraints
No unused type parameters
Proper use of utility types instead of manual type construction
Type-only imports where possible
Proper tree-shaking friendly exports
No circular dependencies
Efficient type computations (avoid deep recursion)

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • packages/react/src/utils/useCustomElementPortal.tsx
  • integration/templates/react-vite/src/main.tsx
  • integration/tests/custom-pages.test.ts
**/*.{jsx,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

**/*.{jsx,tsx}: Use error boundaries in React components
Minimize re-renders in React components

**/*.{jsx,tsx}: Always use functional components with hooks instead of class components
Follow PascalCase naming for components: UserProfile, NavigationMenu
Keep components focused on a single responsibility - split large components
Limit component size to 150-200 lines; extract logic into custom hooks
Use composition over inheritance - prefer smaller, composable components
Export components as named exports for better tree-shaking
One component per file with matching filename and component name
Use useState for simple state management
Use useReducer for complex state logic
Implement proper state initialization
Use proper state updates with callbacks
Implement proper state cleanup
Use Context API for theme/authentication
Implement proper state selectors
Use proper state normalization
Implement proper state persistence
Use React.memo for expensive components
Implement proper useCallback for handlers
Use proper useMemo for expensive computations
Implement proper virtualization for lists
Use proper code splitting with React.lazy
Implement proper cleanup in useEffect
Use proper refs for DOM access
Implement proper event listener cleanup
Use proper abort controllers for fetch
Implement proper subscription cleanup
Use proper HTML elements
Implement proper ARIA attributes
Use proper heading hierarchy
Implement proper form labels
Use proper button types
Implement proper focus management
Use proper keyboard shortcuts
Implement proper tab order
Use proper skip links
Implement proper focus traps
Implement proper error boundaries
Use proper error logging
Implement proper error recovery
Use proper error messages
Implement proper error fallbacks
Use proper form validation
Implement proper error states
Use proper error messages
Implement proper form submission
Use proper form reset
Use proper component naming
Implement proper file naming
Use proper prop naming
Implement proper...

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • packages/react/src/utils/useCustomElementPortal.tsx
  • integration/templates/react-vite/src/main.tsx
integration/**

📄 CodeRabbit Inference Engine (.cursor/rules/global.mdc)

Framework integration templates and E2E tests should be placed under the integration/ directory

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • integration/templates/react-vite/src/main.tsx
  • integration/tests/custom-pages.test.ts
integration/**/*

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

End-to-end tests and integration templates must be located in the 'integration/' directory.

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • integration/templates/react-vite/src/main.tsx
  • integration/tests/custom-pages.test.ts
**/*.{js,ts,tsx,jsx}

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

Support multiple Clerk environment variables (CLERK_, NEXT_PUBLIC_CLERK_, etc.) for configuration.

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • packages/react/src/utils/useCustomElementPortal.tsx
  • integration/templates/react-vite/src/main.tsx
  • integration/tests/custom-pages.test.ts
**/*.tsx

📄 CodeRabbit Inference Engine (.cursor/rules/react.mdc)

**/*.tsx: Use proper type definitions for props and state
Leverage TypeScript's type inference where possible
Use proper event types for handlers
Implement proper generic types for reusable components
Use proper type guards for conditional rendering

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • packages/react/src/utils/useCustomElementPortal.tsx
  • integration/templates/react-vite/src/main.tsx
**/*

⚙️ CodeRabbit Configuration File

**/*: If there are no tests added or modified as part of the PR, please suggest that tests be added to cover the changes.

Whenever reviewing a pull request, if there are any changes that could impact security, always tag @clerk/security in the PR.

Security-impacting changes include, but are not limited to:

  • Changes to authentication logic or mechanisms (e.g. login, session handling, token issuance)
  • Any modification to access control, authorization checks, or role-based permissions
  • Introduction or modification of hashing algorithms, signature verification, or cryptographic primitives
  • Handling of sensitive data (e.g. passwords, tokens, secrets, PII)
  • Integration with external identity providers (e.g. SSO, OAuth, OpenID Connect)
  • Modifications to security headers, cookie flags, CORS policies, or CSRF protections
  • Bypass mechanisms (e.g. feature flags, testing overrides) that could weaken protections
  • Changes to rate limiting, abuse prevention, or input validation

If you're unsure whether a change is security-relevant, err on the side of caution and tag @clerk/security.

Any time that you tag @clerk/security, please do so explicitly in a code comment, rather than within a collapsed section in a coderabbit comment, such as the "recent review details" section. If you do use the team name in any thinking or non-direct-code-comment content, it can be referred to as "clerk security team" to avoid accidentally printing the tag which sends a notification to the team.

Files:

  • integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx
  • packages/react/src/utils/useCustomElementPortal.tsx
  • integration/templates/react-vite/src/main.tsx
  • integration/tests/custom-pages.test.ts
packages/**/*.{ts,tsx}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

TypeScript is required for all packages

Files:

  • packages/react/src/utils/useCustomElementPortal.tsx
packages/**/*.{ts,tsx,d.ts}

📄 CodeRabbit Inference Engine (.cursor/rules/development.mdc)

Packages should export TypeScript types alongside runtime code

Files:

  • packages/react/src/utils/useCustomElementPortal.tsx
integration/**/*.{test,spec}.{js,ts}

📄 CodeRabbit Inference Engine (.cursor/rules/monorepo.mdc)

Integration tests should use Playwright.

Files:

  • integration/tests/custom-pages.test.ts
🧬 Code Graph Analysis (2)
integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx (1)
integration/templates/react-vite/src/custom-user-button/with-dynamic-label-and-custom-pages.tsx (1)
  • Page (5-68)
integration/tests/custom-pages.test.ts (1)
integration/testUtils/index.ts (1)
  • createTestUtils (24-86)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (20)
  • GitHub Check: Integration Tests (billing, chrome)
  • GitHub Check: Integration Tests (nextjs, chrome, 15)
  • GitHub Check: Integration Tests (express, chrome)
  • GitHub Check: Integration Tests (expo-web, chrome)
  • GitHub Check: Integration Tests (vue, chrome)
  • GitHub Check: Integration Tests (react-router, chrome)
  • GitHub Check: Integration Tests (nextjs, chrome, 14)
  • GitHub Check: Integration Tests (localhost, chrome)
  • GitHub Check: Integration Tests (nuxt, chrome)
  • GitHub Check: Integration Tests (tanstack-react-router, chrome)
  • GitHub Check: Integration Tests (sessions, chrome)
  • GitHub Check: Integration Tests (quickstart, chrome)
  • GitHub Check: Integration Tests (tanstack-react-start, chrome)
  • GitHub Check: Integration Tests (elements, chrome)
  • GitHub Check: Integration Tests (astro, chrome)
  • GitHub Check: Integration Tests (ap-flows, chrome)
  • GitHub Check: Integration Tests (generic, chrome)
  • GitHub Check: Static analysis
  • GitHub Check: Publish with pkg-pr-new
  • GitHub Check: Unit Tests (22, **)
🔇 Additional comments (10)
.changeset/soft-jeans-pretend.md (1)

1-6: LGTM! Well-formatted changeset for the bug fix.

The changeset properly documents the patch update to @clerk/clerk-react with a clear description of the fix for dynamic menu items losing icons.

integration/templates/react-vite/src/main.tsx (2)

16-16: LGTM! Proper import for the new dynamic items component.

The import statement follows the established pattern and correctly imports the component that demonstrates dynamic menu item functionality.


87-90: LGTM! Route properly configured for the dynamic items demo.

The new route follows the established pattern and provides access to the component that demonstrates the dynamic menu items fix.

packages/react/src/utils/useCustomElementPortal.tsx (3)

19-19: LGTM! Dynamic array initialization improves flexibility.

Changing from a fixed-size array to an empty array that grows dynamically is a good improvement that supports variable numbers of portal elements.


23-33: LGTM! Safe dynamic array growth in mount function.

The implementation properly ensures the array is large enough for the target index using a while loop, and uses immutable updates with the spread operator. This safely handles dynamic menu items that may be added at runtime.


34-42: LGTM! Bounds checking in unmount function.

The unmount function correctly checks array bounds before accessing elements, preventing potential runtime errors when dealing with dynamically sized arrays.

integration/templates/react-vite/src/custom-user-button/with-dynamic-items.tsx (3)

1-4: LGTM! Proper imports following established patterns.

The imports are correctly structured and follow the same pattern as other custom user button components in the codebase.


5-7: LGTM! Clean component declaration and state management.

The component uses proper functional component syntax with React hooks for state management, following React best practices.


8-36: LGTM! Well-structured demonstration of dynamic menu items.

The component effectively demonstrates the fix for dynamic menu items losing icons:

  • Static menu item always rendered with icon (🌐)
  • Dynamic items conditionally rendered with icons (🌍, 🌐)
  • Toggle button allows testing the dynamic behavior
  • Follows established patterns from other custom user button components

This serves as both a test case and demonstration of the resolved issue.

integration/tests/custom-pages.test.ts (1)

448-500: LGTM! Comprehensive test for dynamic menu items with icons.

The test thoroughly validates the fix for dynamic menu items losing icons:

  • Verifies initial state with only static item and its icon
  • Tests toggling dynamic items on/off
  • Confirms all items (static and dynamic) maintain their icons after toggling
  • Uses proper Playwright testing patterns and assertions
  • Follows established testing structure from other tests in the file

This provides excellent coverage for the bug fix, ensuring dynamic menu items preserve their icons correctly.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Before this update, the useCustomElementPortal function initialized its internal nodes array with a fixed length based on the initial elements.length. When new elements were added dynamically, the array didn't expand, causing portal creation to fail for the new elements.

@alexcarpenter
Copy link
Member

!snapshot

@clerk-cookie
Copy link
Collaborator

Hey @alexcarpenter - the snapshot version command generated the following package versions:

Package Version
@clerk/agent-toolkit 0.1.16-snapshot.v20250730202811
@clerk/astro 2.10.13-snapshot.v20250730202811
@clerk/backend 2.6.2-snapshot.v20250730202811
@clerk/chrome-extension 2.5.15-snapshot.v20250730202811
@clerk/clerk-js 5.79.0-snapshot.v20250730202811
@clerk/elements 0.23.48-snapshot.v20250730202811
@clerk/clerk-expo 2.14.14-snapshot.v20250730202811
@clerk/expo-passkeys 0.3.25-snapshot.v20250730202811
@clerk/express 1.7.15-snapshot.v20250730202811
@clerk/fastify 2.4.15-snapshot.v20250730202811
@clerk/localizations 3.20.6-snapshot.v20250730202811
@clerk/nextjs 6.28.1-snapshot.v20250730202811
@clerk/nuxt 1.8.1-snapshot.v20250730202811
@clerk/clerk-react 5.38.1-snapshot.v20250730202811
@clerk/react-router 1.8.9-snapshot.v20250730202811
@clerk/remix 4.10.9-snapshot.v20250730202811
@clerk/shared 3.17.0-snapshot.v20250730202811
@clerk/tanstack-react-start 0.21.5-snapshot.v20250730202811
@clerk/testing 1.10.9-snapshot.v20250730202811
@clerk/themes 2.4.4-snapshot.v20250730202811
@clerk/types 4.72.0-snapshot.v20250730202811
@clerk/vue 1.9.1-snapshot.v20250730202811

Tip: Use the snippet copy button below to quickly install the required packages.
@clerk/agent-toolkit

npm i @clerk/[email protected] --save-exact

@clerk/astro

npm i @clerk/[email protected] --save-exact

@clerk/backend

npm i @clerk/[email protected] --save-exact

@clerk/chrome-extension

npm i @clerk/[email protected] --save-exact

@clerk/clerk-js

npm i @clerk/[email protected] --save-exact

@clerk/elements

npm i @clerk/[email protected] --save-exact

@clerk/clerk-expo

npm i @clerk/[email protected] --save-exact

@clerk/expo-passkeys

npm i @clerk/[email protected] --save-exact

@clerk/express

npm i @clerk/[email protected] --save-exact

@clerk/fastify

npm i @clerk/[email protected] --save-exact

@clerk/localizations

npm i @clerk/[email protected] --save-exact

@clerk/nextjs

npm i @clerk/[email protected] --save-exact

@clerk/nuxt

npm i @clerk/[email protected] --save-exact

@clerk/clerk-react

npm i @clerk/[email protected] --save-exact

@clerk/react-router

npm i @clerk/[email protected] --save-exact

@clerk/remix

npm i @clerk/[email protected] --save-exact

@clerk/shared

npm i @clerk/[email protected] --save-exact

@clerk/tanstack-react-start

npm i @clerk/[email protected] --save-exact

@clerk/testing

npm i @clerk/[email protected] --save-exact

@clerk/themes

npm i @clerk/[email protected] --save-exact

@clerk/types

npm i @clerk/[email protected] --save-exact

@clerk/vue

npm i @clerk/[email protected] --save-exact

@wobsoriano wobsoriano merged commit 241bbbd into main Jul 30, 2025
36 checks passed
@wobsoriano wobsoriano deleted the rob/sdk-2162-fix branch July 30, 2025 20:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants