Skip to content

regression: Message list not staying at the bottom#40755

Merged
dionisio-bot[bot] merged 4 commits into
release-8.5.0from
fix/keepAt
Jun 2, 2026
Merged

regression: Message list not staying at the bottom#40755
dionisio-bot[bot] merged 4 commits into
release-8.5.0from
fix/keepAt

Conversation

@gabriellsh
Copy link
Copy Markdown
Member

@gabriellsh gabriellsh commented Jun 1, 2026

Proposed changes (including videos or screenshots)

The fix is pretty simple: Observe both the list wrapper and its container, if the list is flagged as currently at the bottom, keep it there if any size changes.

Issue(s)

CORE-2216

Steps to test or reproduce

Further comments

Summary by CodeRabbit

  • New Features
    • Improved automatic scroll positioning to keep chats anchored to the latest messages.
    • Resize-aware "keep at bottom" behavior so views remain pinned during layout or container changes.
    • Consistent stick-to-bottom behavior across main message lists and thread conversations.
  • Bug Fixes
    • More robust bottom-detection when previewing or loading additional messages to prevent unexpected jumps.
  • Tests
    • Updated message list tests to include the new keep-at-bottom handling.

@dionisio-bot
Copy link
Copy Markdown
Contributor

dionisio-bot Bot commented Jun 1, 2026

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

@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Jun 1, 2026

⚠️ No Changeset found

Latest commit: 16412f6

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

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Jun 1, 2026

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 4f7cd369-114d-43aa-adf8-126eea876a07

📥 Commits

Reviewing files that changed from the base of the PR and between 20f6597 and 16412f6.

📒 Files selected for processing (5)
  • apps/meteor/client/views/room/MessageList/MessageList.spec.tsx
  • apps/meteor/client/views/room/MessageList/MessageList.tsx
  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
  • apps/meteor/client/views/room/body/RoomBody.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx
✅ Files skipped from review due to trivial changes (1)
  • apps/meteor/client/views/room/MessageList/MessageList.spec.tsx
🚧 Files skipped from review as they are similar to previous changes (4)
  • apps/meteor/client/views/room/body/RoomBody.tsx
  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx
  • apps/meteor/client/views/room/MessageList/MessageList.tsx
📜 Recent 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). (3)
  • GitHub Check: CodeQL-Build
  • GitHub Check: CodeQL-Build
  • GitHub Check: Hacktron Security Check

Walkthrough

Adds a ResizeObserver-based hook (useKeepAtBottom) and wires it into MessageList, RoomBody, and ThreadMessageList to register a scroll-to-end callback, include the hook's ref in merged refs, and adjust bottom-detection logic.

Changes

Keep-at-Bottom Virtualization

Layer / File(s) Summary
useKeepAtBottom hook and size detection
apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
Exports useKeepAtBottom(isAtBottom) implementing a ResizeObserver; returns keepAtBottomRef and setKeepAtBottom to invoke a stored handler when the container/child resizes while isAtBottom.current is truthy.
MessageList prop and scroll effect
apps/meteor/client/views/room/MessageList/MessageList.tsx
Adds setKeepAtBottom to props, computes messagesLength (accounts for canPreview), registers a callback via setKeepAtBottom that scrolls the virtua virtualizer to messagesLength aligned to end, and short-circuits at-bottom detection when hasMoreNextMessages is true.
RoomBody hook integration and ref merging
apps/meteor/client/views/room/body/RoomBody.tsx
Imports and uses useKeepAtBottom(isAtBottom), includes keepAtBottomRef in merged innerRef, and passes setKeepAtBottom into MessageList.
ThreadMessageList hook, refs, and scroll detection update
apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx
Imports useKeepAtBottom and useMergedRefsV2, wires keepAtBottomRef/setKeepAtBottom, applies merged refs to CustomVirtuaScrollbars, and replaces offset-based bottom detection with scrollSize >= viewportSize.
sequenceDiagram
  participant ResizeObserver
  participant Hook as useKeepAtBottom
  participant RoomBody
  participant MessageList
  participant Virtua as VirtuaVirtualizer
  ResizeObserver->>Hook: container/child size change
  Hook->>Hook: check isAtBottom.current
  Hook->>RoomBody: call stored setKeepAtBottom handler
  RoomBody->>MessageList: registered callback invoked
  MessageList->>Virtua: scrollToIndex(messagesLength, align:'end')
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~45 minutes

Possibly related PRs

Suggested reviewers

  • tassoevan
🚥 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 directly describes the main change: fixing a regression where the message list fails to stay at the bottom after layout/size changes, which aligns with the PR's core objective.
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 (1)
  • CORE-2216: 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.

@gabriellsh gabriellsh changed the base branch from develop to release-8.5.0 June 1, 2026 20:34
@gabriellsh gabriellsh added this to the 8.5.0 milestone Jun 2, 2026
@gabriellsh gabriellsh marked this pull request as ready for review June 2, 2026 13:10
@gabriellsh gabriellsh requested a review from a team as a code owner June 2, 2026 13:10
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: 3

🧹 Nitpick comments (3)
apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts (2)

44-46: ⚡ Quick win

setKeepAtBottom parameter type is misleading.

handle: () => void | null parses as a function returning void | null, not a nullable handler. Given handleRef is (() => void) | null, the intended type is (() => void) | null (or simply () => void, matching the MessageListProps.setKeepAtBottom contract).

♻️ Proposed fix
-	const setKeepAtBottom = useCallback((handle: () => void | null) => {
+	const setKeepAtBottom = useCallback((handle: () => void) => {
 		handleRef.current = handle;
 	}, []);
🤖 Prompt for 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.

In `@apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts` around
lines 44 - 46, The parameter type for setKeepAtBottom is incorrect: change the
parameter from a function-typed return signature to a nullable handler type to
match handleRef and the MessageListProps.setKeepAtBottom contract; update the
setKeepAtBottom signature so its parameter is (() => void) | null (or simply ()
=> void if non-nullable) and assign that value to handleRef.current inside the
useCallback to ensure types align with handleRef and the external prop.

8-15: 💤 Low value

Explanatory comment block conflicts with the no-comments guideline.

Consider moving this rationale into a PR/commit note or condensing it. As per coding guidelines: "Avoid code comments in the implementation".

🤖 Prompt for 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.

In `@apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts` around
lines 8 - 15, The large explanatory comment block at the top of
useKeepAtBottom.ts conflicts with the "no-comments" guideline; remove or
relocate this rationale to the PR/commit description and keep the source file
minimal. In practice, delete the multi-line block in the file containing the
useKeepAtBottom hook, leaving at most a single-line comment or JSDoc summary if
absolutely necessary, and ensure the remaining code and function name
useKeepAtBottom remain unchanged and fully documented in the commit/PR message
instead.
apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx (1)

211-216: ⚡ Quick win

Dead assignment in onScroll — the if block is immediately overwritten.

isAtBottom.current = true (Line 214) is unconditionally overwritten by Line 216 on every call, so the block has no effect. The short-content case is already covered by the offset formula: when scrollSize <= viewportSize, offset is 0 and 0 - scrollSize + viewportSize >= -20 is true. Drop the dead block (and its comment, per the no-comments guideline) for clarity.

♻️ Proposed fix
 						const handle = virtualizerRef.current;
 						if (!handle) return;
-
-							// Copied from messageList, I'm unsure why this is necessary, but it seems to be needed to properly set the isAtBottom state
-							if (handle.scrollSize >= handle.viewportSize) {
-								isAtBottom.current = true;
-							}
 						isAtBottom.current = offset - handle.scrollSize + handle.viewportSize >= -20;
As per coding guidelines: "Avoid code comments in the implementation".
🤖 Prompt for 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.

In
`@apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx`
around lines 211 - 216, Remove the dead assignment in the onScroll handler: the
conditional that sets isAtBottom.current = true (which references
handle.scrollSize and handle.viewportSize) is immediately overwritten by the
subsequent calculation using offset, so delete that if block and its comment;
keep the existing calculation isAtBottom.current = offset - handle.scrollSize +
handle.viewportSize >= -20 to determine bottom state.
🤖 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 `@apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts`:
- Around line 22-34: The code uses node.firstChild and then calls
observer.observe(node.firstChild as HTMLElement), which can throw if firstChild
is a non-Element; update useKeepAtBottom.ts to use node.firstElementChild (or
otherwise guard for Element) when assigning listWrapper and before calling
ResizeObserver.observe, e.g. ensure listWrapper is an Element (check truthiness
and instanceof Element) and call observer.observe(listWrapper) instead of
observing a possibly-text node; keep the existing logic around observer,
sizeChanged, isAtBottom.current, and handleRef.current unchanged.
- Around line 18-29: In useKeepAtBottom, the contentRectRef guard is never
updated so sizeChanged(contentRectRef.current, entry.contentRect) is always
true; fix by updating contentRectRef when the ResizeObserver fires (e.g., set
contentRectRef.current = entry.contentRect or maintain a Map of target->rect if
observing multiple elements) and then run the sizeChanged check against the
previous rect before overwriting, so handleRef.current() only fires when a real
size change is detected; update the ResizeObserver callback inside
useKeepAtBottom (referencing contentRectRef, sizeChanged, isAtBottom, handleRef)
accordingly or alternatively remove the unused guard if you opt not to track
previous rects.

In `@apps/meteor/client/views/room/MessageList/MessageList.tsx`:
- Around line 84-94: The keep-at-bottom logic uses
virtualizerRef.current.scrollToIndex(messagesLength, ...) which can target one
past the last rendered item when canPreview is true; change the index passed to
scrollToIndex to messagesLength - 1 so it always targets the last rendered item
(use the existing messagesLength value, subtract 1) inside the setKeepAtBottom
effect that references virtualizerRef and setKeepAtBottom, keeping the align:
'end' behavior unchanged.

---

Nitpick comments:
In
`@apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx`:
- Around line 211-216: Remove the dead assignment in the onScroll handler: the
conditional that sets isAtBottom.current = true (which references
handle.scrollSize and handle.viewportSize) is immediately overwritten by the
subsequent calculation using offset, so delete that if block and its comment;
keep the existing calculation isAtBottom.current = offset - handle.scrollSize +
handle.viewportSize >= -20 to determine bottom state.

In `@apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts`:
- Around line 44-46: The parameter type for setKeepAtBottom is incorrect: change
the parameter from a function-typed return signature to a nullable handler type
to match handleRef and the MessageListProps.setKeepAtBottom contract; update the
setKeepAtBottom signature so its parameter is (() => void) | null (or simply ()
=> void if non-nullable) and assign that value to handleRef.current inside the
useCallback to ensure types align with handleRef and the external prop.
- Around line 8-15: The large explanatory comment block at the top of
useKeepAtBottom.ts conflicts with the "no-comments" guideline; remove or
relocate this rationale to the PR/commit description and keep the source file
minimal. In practice, delete the multi-line block in the file containing the
useKeepAtBottom hook, leaving at most a single-line comment or JSDoc summary if
absolutely necessary, and ensure the remaining code and function name
useKeepAtBottom remain unchanged and fully documented in the commit/PR message
instead.
🪄 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: 077c80fb-7099-492c-aa43-4f5af54d8bf7

📥 Commits

Reviewing files that changed from the base of the PR and between 8553294 and ffe972f.

📒 Files selected for processing (4)
  • apps/meteor/client/views/room/MessageList/MessageList.tsx
  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
  • apps/meteor/client/views/room/body/RoomBody.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.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). (2)
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: Hacktron Security Check
🧰 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:

  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx
  • apps/meteor/client/views/room/body/RoomBody.tsx
  • apps/meteor/client/views/room/MessageList/MessageList.tsx
🧠 Learnings (6)
📚 Learning: 2026-02-10T16:32:42.586Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 38528
File: apps/meteor/client/startup/roles.ts:14-14
Timestamp: 2026-02-10T16:32:42.586Z
Learning: In Rocket.Chat's Meteor client code, DDP streams use EJSON and Date fields arrive as Date objects; do not manually construct new Date() in stream handlers (for example, in sdk.stream()). Only REST API responses return plain JSON where dates are strings, so implement explicit conversion there if needed. Apply this guidance to all TypeScript files under apps/meteor/client to ensure consistent date handling in DDP streams and REST responses.

Applied to files:

  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
📚 Learning: 2026-05-11T20:30:35.265Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 40480
File: apps/meteor/client/meteor/startup/accounts.ts:59-61
Timestamp: 2026-05-11T20:30:35.265Z
Learning: In Rocket.Chat’s Meteor client code, when calling `dispatchToastMessage` with `{ type: 'error' }`, pass the raw caught error object as `message` without manual normalization. `dispatchToastMessage` is designed to accept `message: unknown` for error toasts, so avoid converting errors to strings (e.g., `String(error)`) or extracting `error.message` before passing them.

Applied to files:

  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
📚 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:

  • apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx
  • apps/meteor/client/views/room/body/RoomBody.tsx
  • apps/meteor/client/views/room/MessageList/MessageList.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:

  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx
  • apps/meteor/client/views/room/body/RoomBody.tsx
  • apps/meteor/client/views/room/MessageList/MessageList.tsx
🔇 Additional comments (2)
apps/meteor/client/views/room/body/RoomBody.tsx (1)

113-115: LGTM!

Also applies to: 228-228

apps/meteor/client/views/room/contextualBar/Threads/components/ThreadMessageList.tsx (1)

80-92: LGTM!

Also applies to: 199-199

Comment thread apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts Outdated
Comment thread apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts
Comment thread apps/meteor/client/views/room/MessageList/MessageList.tsx
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.

1 issue found across 4 files

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread apps/meteor/client/views/room/MessageList/hooks/useKeepAtBottom.ts Outdated
Copy link
Copy Markdown
Member

@MartinSchoeler MartinSchoeler left a comment

Choose a reason for hiding this comment

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

Not working with jump to messages that need loading (older messages)

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.

1 issue found across 1 file (changes from recent commits).

Tip: Review your code locally with the cubic CLI to iterate faster.

Re-trigger cubic

Comment thread apps/meteor/client/views/room/MessageList/MessageList.tsx
@codecov
Copy link
Copy Markdown

codecov Bot commented Jun 2, 2026

Codecov Report

❌ Patch coverage is 78.72340% with 10 lines in your changes missing coverage. Please review.
⚠️ Please upload report for BASE (release-8.5.0@f1f1edd). Learn more about missing BASE report.

Additional details and impacted files

Impacted file tree graph

@@               Coverage Diff                @@
##             release-8.5.0   #40755   +/-   ##
================================================
  Coverage                 ?   69.97%           
================================================
  Files                    ?     3328           
  Lines                    ?   126624           
  Branches                 ?    21998           
================================================
  Hits                     ?    88602           
  Misses                   ?    34730           
  Partials                 ?     3292           
Flag Coverage Δ
e2e 59.31% <82.85%> (?)
e2e-api 47.00% <ø> (?)
unit 70.05% <55.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.

@gabriellsh gabriellsh dismissed MartinSchoeler’s stale review June 2, 2026 16:16

We tested and there was an issue with the logic that flags if the list is at the bottom (already fixed, thanks!), which would cause some issues when all messages were not loaded, but we discovered that this was not a cause for the issues happening with "jump to messages".

@gabriellsh gabriellsh added the stat: QA assured Means it has been tested and approved by a company insider label Jun 2, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Jun 2, 2026
@alfredodelfabro alfredodelfabro removed the stat: QA assured Means it has been tested and approved by a company insider label Jun 2, 2026
@dionisio-bot dionisio-bot Bot removed the stat: ready to merge PR tested and approved waiting for merge label Jun 2, 2026
@alfredodelfabro alfredodelfabro added the stat: QA assured Means it has been tested and approved by a company insider label Jun 2, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Jun 2, 2026
@dionisio-bot dionisio-bot Bot merged commit 58984f3 into release-8.5.0 Jun 2, 2026
150 of 158 checks passed
@dionisio-bot dionisio-bot Bot deleted the fix/keepAt branch June 2, 2026 18:57
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: bug

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants