Skip to content

refactor(ui-composer): remove unnecessary ReactElement type annotations across components#40805

Merged
tassoevan merged 1 commit into
developfrom
refactor/prepare-types-for-react-19-3
Jun 5, 2026
Merged

refactor(ui-composer): remove unnecessary ReactElement type annotations across components#40805
tassoevan merged 1 commit into
developfrom
refactor/prepare-types-for-react-19-3

Conversation

@tassoevan
Copy link
Copy Markdown
Member

@tassoevan tassoevan commented Jun 4, 2026

⚠️ This is part 3/23 of #40796. PR for refactor/prepare-types-for-react-19-2 must be merged first.


Proposed changes (including videos or screenshots)

As a first step towards upgrading to React 19, it handles types from @types/react looking forward the next major.

Issue(s)

Task: ARCH-2170

Steps to test or reproduce

Further comments

No runtime change is expected from it.

Summary by CodeRabbit

  • Chores
    • Simplified TypeScript type annotations across message composer components. Removed explicit return type declarations to rely on type inference, improving code maintainability while preserving all existing functionality.

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Jun 4, 2026

⚠️ No Changeset found

Latest commit: 1900967

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

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

@dionisio-bot
Copy link
Copy Markdown
Contributor

dionisio-bot Bot commented Jun 4, 2026

Looks like this PR is ready to merge! 🎉
If you have any trouble, please check the PR guidelines

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Jun 4, 2026

Review Change Stack

Walkthrough

This PR systematically removes explicit ReactElement return type annotations from 15 React components across the UI composer library, allowing TypeScript to infer component return types. MessageComposerFile and MessageComposerFileError also widen the actionIcon prop type from ReactElement to ReactNode. All runtime behavior and JSX output remain unchanged.

Changes

Remove explicit ReactElement return types from UI composer components

Layer / File(s) Summary
Core MessageComposer and direct child components
packages/ui-composer/src/MessageComposer/MessageComposer.tsx, MessageComposerAction.tsx, MessageComposerActionsDivider.tsx, MessageComposerButton.tsx
ReactElement import removed and explicit return type annotations dropped from MessageComposer forwardRef and its direct child components (Action, ActionsDivider, Button).
MessageComposerFile components with prop type widening
packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx, MessageComposerFileError.tsx
React type imports updated; actionIcon prop type widened from ReactElement to ReactNode in both MessageComposerFile and MessageComposerFileError, allowing more flexible renderable content.
MessageComposerHint and MessageComposerIcon components
packages/ui-composer/src/MessageComposer/MessageComposerHint.tsx, MessageComposerIcon.tsx
Simplify React imports by removing ReactElement and dropping explicit return type annotations from both helper components.
MessageComposerSkeleton with import adjustments
packages/ui-composer/src/MessageComposer/MessageComposerSkeleton.tsx
Removes ReactElement return type annotation and adds explicit imports for Skeleton and Box from @rocket.chat/fuselage.
MessageComposerToolbar suite components
packages/ui-composer/src/MessageComposer/MessageComposerToolbar.tsx, MessageComposerToolbarActions.tsx, MessageComposerToolbarSubmit.tsx
Remove ReactElement type imports and explicit return type annotations from Toolbar, ToolbarActions, and ToolbarSubmit components.
MessageFooterCallout components with forwardRef
packages/ui-composer/src/MessageFooterCallout/MessageFooterCallout.tsx, MessageFooterCalloutDivider.tsx
Update forwardRef component signatures to remove explicit ReactElement return type annotations and adjust React type imports.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Suggested labels

type: chore

Suggested reviewers

  • ggazzo
  • KevLehman
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and specifically describes the main change: removing unnecessary ReactElement type annotations across ui-composer components, which is the primary focus of all modifications in the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

Warning

Review ran into problems

🔥 Problems

Errors were encountered while retrieving linked issues.

Errors (2)
  • REACT-19: Request failed with status code 401
  • ARCH-2170: Request failed with status code 401

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@codecov
Copy link
Copy Markdown

codecov Bot commented Jun 4, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 70.05%. Comparing base (f85d853) to head (1900967).

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##           develop   #40805      +/-   ##
===========================================
- Coverage    70.07%   70.05%   -0.03%     
===========================================
  Files         3337     3337              
  Lines       123506   123506              
  Branches     21996    22047      +51     
===========================================
- Hits         86552    86517      -35     
- Misses       33603    33644      +41     
+ Partials      3351     3345       -6     
Flag Coverage Δ
e2e 59.36% <ø> (-0.02%) ⬇️
e2e-api 46.24% <ø> (-0.94%) ⬇️
unit 70.85% <100.00%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@tassoevan tassoevan force-pushed the refactor/prepare-types-for-react-19-3 branch from d816d1e to 43f312c Compare June 5, 2026 04:57
@tassoevan tassoevan force-pushed the refactor/prepare-types-for-react-19-3 branch from 43f312c to 1900967 Compare June 5, 2026 13:53
@tassoevan tassoevan requested a review from a team June 5, 2026 13:53
@tassoevan tassoevan added this to the 8.6.0 milestone Jun 5, 2026
@tassoevan tassoevan marked this pull request as ready for review June 5, 2026 13:53
Copy link
Copy Markdown
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

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In
`@packages/ui-composer/src/MessageFooterCallout/MessageFooterCalloutDivider.tsx`:
- Line 4: The forwardRef generic for MessageFooterCalloutDivider is incorrect:
update the ref type used in forwardRef<HTMLButtonElement> for the
MessageFooterCalloutDivider component to HTMLHRElement (or the appropriate
HTMLElement) to match the rendered <Box is='hr'> element; also update any local
ref typings or Prop types that reference HTMLButtonElement inside the
MessageFooterCalloutDivider function to use HTMLHRElement so consumers receive
the correct ref type.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 6b6e6146-2fab-442c-a9ae-1f89ca7b4f16

📥 Commits

Reviewing files that changed from the base of the PR and between f85d853 and 1900967.

📒 Files selected for processing (14)
  • packages/ui-composer/src/MessageComposer/MessageComposer.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerAction.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerActionsDivider.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerButton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFileError.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerHint.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerIcon.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerSkeleton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbar.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarActions.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarSubmit.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCallout.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCalloutDivider.tsx
📜 Review details
⏰ 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: 📦 Build Packages
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: Hacktron Security Check
  • GitHub Check: CodeQL-Build
  • GitHub Check: CodeQL-Build
🧰 Additional context used
📓 Path-based instructions (1)
**/*.{ts,tsx,js}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • packages/ui-composer/src/MessageComposer/MessageComposerAction.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerHint.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerIcon.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarActions.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbar.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerButton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerActionsDivider.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarSubmit.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCallout.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerSkeleton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposer.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFileError.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCalloutDivider.tsx
🧠 Learnings (7)
📓 Common learnings
Learnt from: smirk-dev
Repo: RocketChat/Rocket.Chat PR: 39625
File: apps/meteor/app/api/server/v1/push.ts:85-97
Timestamp: 2026-03-14T14:58:58.834Z
Learning: In RocketChat/Rocket.Chat, the `push.token` POST/DELETE endpoints in `apps/meteor/app/api/server/v1/push.ts` were already migrated to the chained router API pattern on `develop` prior to PR `#39625`. `cleanTokenResult` (which strips `authToken` and returns `PushTokenResult`) and `isPushTokenPOSTProps`/`isPushTokenDELETEProps` validators already exist on `develop`. PR `#39625` only migrates `push.get` and `push.info` to the chained pattern. Do not flag `cleanTokenResult` or `PushTokenResult` as newly introduced behavior-breaking changes when reviewing this PR.
Learnt from: amitb0ra
Repo: RocketChat/Rocket.Chat PR: 39676
File: .changeset/migrate-users-register-openapi.md:3-3
Timestamp: 2026-03-16T21:50:42.118Z
Learning: In RocketChat/Rocket.Chat OpenAPI migration PRs, removing endpoint types and validators from `rocket.chat/rest-typings` (e.g., `UserRegisterParamsPOST`, `/v1/users.register` entry) is the *required* migration pattern per RocketChat/Rocket.Chat-Open-API#150 Rule 7 ("No More rest-typings or Manual Typings"). The endpoint type is re-exposed via a module augmentation `.d.ts` file in the consuming package (e.g., `packages/web-ui-registration/src/users-register.d.ts`). This is NOT a breaking change — the correct changeset bump for `rocket.chat/rest-typings` in this scenario is `minor`, not `major`. Do not flag this as a breaking change during OpenAPI migration reviews.
Learnt from: amitb0ra
Repo: RocketChat/Rocket.Chat PR: 39647
File: apps/meteor/app/api/server/v1/users.ts:710-757
Timestamp: 2026-03-15T14:31:28.969Z
Learning: In RocketChat/Rocket.Chat, the `UserCreateParamsPOST` type in `apps/meteor/app/api/server/v1/users.ts` (migrated from `packages/rest-typings/src/v1/users/UserCreateParamsPOST.ts`) intentionally has `fields: string` (non-optional) and `settings?: IUserSettings` without a corresponding AJV schema entry. This is a pre-existing divergence carried over verbatim from the original rest-typings source (PR `#39647`). Do not flag this type/schema misalignment during the OpenAPI migration review — it is tracked as a separate follow-up fix.
📚 Learning: 2026-03-04T14:16:49.202Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 39304
File: packages/ui-contexts/src/ActionManagerContext.ts:26-26
Timestamp: 2026-03-04T14:16:49.202Z
Learning: In `packages/ui-contexts/src/ActionManagerContext.ts` (TypeScript, RocketChat/Rocket.Chat), the `disposeView` method in `IActionManager` uses an intentionally explicit union `UiKit.ModalView['id'] | UiKit.BannerView['viewId'] | UiKit.ContextualBarView['id']` to document which view types are accepted, even though all constituents resolve to the same primitive. The inline `// eslint-disable-next-line typescript-eslint/no-duplicate-type-constituents` comment is intentional and should not be flagged or removed.

Applied to files:

  • packages/ui-composer/src/MessageComposer/MessageComposerAction.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarActions.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerActionsDivider.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposer.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx
📚 Learning: 2025-11-17T15:07:13.273Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 37398
File: packages/fuselage-ui-kit/src/surfaces/FuselageSurfaceRenderer.tsx:357-363
Timestamp: 2025-11-17T15:07:13.273Z
Learning: In packages/fuselage-ui-kit/src/surfaces/FuselageSurfaceRenderer.tsx, IconElement is a presentational, non-actionable element that does not require wrapping in AppIdProvider, similar to plain_text and mrkdwn renderers. Only actionable elements (those with actions, actionId, or interactive behavior) should be wrapped in AppIdProvider.

Applied to files:

  • packages/ui-composer/src/MessageComposer/MessageComposerAction.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerHint.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerIcon.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbar.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx
📚 Learning: 2026-03-27T14:52:56.865Z
Learnt from: dougfabris
Repo: RocketChat/Rocket.Chat PR: 39892
File: apps/meteor/client/views/room/contextualBar/Threads/Thread.tsx:150-155
Timestamp: 2026-03-27T14:52:56.865Z
Learning: In Rocket.Chat, there are two different `ModalBackdrop` components with different prop APIs. During review, confirm the import source: (1) `rocket.chat/fuselage` `ModalBackdrop` uses `ModalBackdropProps` based on `BoxProps` (so it supports `onClick` and other Box/DOM props) and does not have an `onDismiss` prop; (2) `rocket.chat/ui-client` `ModalBackdrop` uses a narrower props interface like `{ children?: ReactNode; onDismiss?: () => void }` and handles Escape keypress and outside mouse-up, and it does not forward arbitrary DOM props such as `onClick`. Flag mismatched props (e.g., `onDismiss` passed to the fuselage component or `onClick` passed to the ui-client component) and ensure the usage matches the correct component being imported.

Applied to files:

  • packages/ui-composer/src/MessageComposer/MessageComposerAction.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerHint.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerIcon.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarActions.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbar.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerButton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerActionsDivider.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarSubmit.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCallout.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerSkeleton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposer.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFileError.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCalloutDivider.tsx
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • packages/ui-composer/src/MessageComposer/MessageComposerAction.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerHint.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerIcon.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarActions.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbar.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerButton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerActionsDivider.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarSubmit.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCallout.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerSkeleton.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposer.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFileError.tsx
  • packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx
  • packages/ui-composer/src/MessageFooterCallout/MessageFooterCalloutDivider.tsx
📚 Learning: 2026-04-10T22:42:05.539Z
Learnt from: dougfabris
Repo: RocketChat/Rocket.Chat PR: 40075
File: apps/meteor/client/views/room/modals/FileUploadModal/FileUploadModal.tsx:69-71
Timestamp: 2026-04-10T22:42:05.539Z
Learning: In `apps/meteor/client/views/room/modals/FileUploadModal/FileUploadModal.tsx`, the submit handler converts an empty/whitespace-only description to `undefined` (`description?.trim() || undefined`) intentionally. All downstream image-rendering components (`AttachmentImage`, `ImagePreview`, `ImageItem`, `ImageGallery`) default `undefined` alt to `''`, so the `<img alt="">` attribute is always present. Do not flag this `undefined` conversion as a bug preventing alt text from being cleared.

Applied to files:

  • packages/ui-composer/src/MessageComposer/MessageComposerToolbarSubmit.tsx
📚 Learning: 2026-02-24T19:36:55.089Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 38493
File: apps/meteor/tests/e2e/page-objects/fragments/home-content.ts:60-82
Timestamp: 2026-02-24T19:36:55.089Z
Learning: In RocketChat/Rocket.Chat e2e tests (apps/meteor/tests/e2e/page-objects/fragments/home-content.ts), thread message preview listitems do not have aria-roledescription="message", so lastThreadMessagePreview locator cannot be scoped to messageListItems (which filters for aria-roledescription="message"). It should remain scoped to page.getByRole('listitem') or mainMessageList.getByRole('listitem').

Applied to files:

  • packages/ui-composer/src/MessageComposer/MessageComposerSkeleton.tsx
🔇 Additional comments (14)
packages/ui-composer/src/MessageComposer/MessageComposer.tsx (1)

2-2: LGTM!

Also applies to: 11-11

packages/ui-composer/src/MessageComposer/MessageComposerAction.tsx (1)

2-2: LGTM!

Also applies to: 4-4

packages/ui-composer/src/MessageComposer/MessageComposerActionsDivider.tsx (1)

2-2: LGTM!

Also applies to: 4-4

packages/ui-composer/src/MessageComposer/MessageComposerButton.tsx (1)

2-2: LGTM!

Also applies to: 4-4

packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFile.tsx (1)

5-6: LGTM!

Also applies to: 15-15

packages/ui-composer/src/MessageComposer/MessageComposerIcon.tsx (1)

3-3: LGTM!

Also applies to: 5-5

packages/ui-composer/src/MessageComposer/MessageComposerFile/MessageComposerFileError.tsx (1)

1-1: LGTM!

Also applies to: 10-10

packages/ui-composer/src/MessageComposer/MessageComposerHint.tsx (1)

3-3: LGTM!

Also applies to: 11-11

packages/ui-composer/src/MessageComposer/MessageComposerSkeleton.tsx (1)

5-5: LGTM!

packages/ui-composer/src/MessageComposer/MessageComposerToolbar.tsx (1)

2-2: LGTM!

Also applies to: 4-4

packages/ui-composer/src/MessageComposer/MessageComposerToolbarActions.tsx (1)

3-3: LGTM!

Also applies to: 5-5

packages/ui-composer/src/MessageComposer/MessageComposerToolbarSubmit.tsx (1)

2-2: LGTM!

Also applies to: 4-4

packages/ui-composer/src/MessageFooterCallout/MessageFooterCallout.tsx (1)

2-2: LGTM!

Also applies to: 13-13

packages/ui-composer/src/MessageFooterCallout/MessageFooterCalloutDivider.tsx (1)

2-2: LGTM!

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai Bot left a comment

Choose a reason for hiding this comment

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

No issues found across 14 files

Re-trigger cubic

Copy link
Copy Markdown
Member

@dougfabris dougfabris left a comment

Choose a reason for hiding this comment

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

LGTM!

@dougfabris dougfabris added the stat: QA assured Means it has been tested and approved by a company insider label Jun 5, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Jun 5, 2026
@dionisio-bot dionisio-bot Bot added this pull request to the merge queue Jun 5, 2026
@github-merge-queue github-merge-queue Bot removed this pull request from the merge queue due to failed status checks Jun 5, 2026
@tassoevan tassoevan added this pull request to the merge queue Jun 5, 2026
Merged via the queue into develop with commit d40f5d2 Jun 5, 2026
48 checks passed
@tassoevan tassoevan deleted the refactor/prepare-types-for-react-19-3 branch June 5, 2026 16:23
gabriellsh pushed a commit that referenced this pull request Jun 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

stat: QA assured Means it has been tested and approved by a company insider stat: ready to merge PR tested and approved waiting for merge type: chore

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants