ux: infinite-scroll history + delayed sidebar tooltips - #248
Merged
Conversation
- History auto-loads the next page as you scroll within ~240px of the bottom, so long histories feel endless instead of stopping at a button. The "Load more" button stays as a visible affordance and fallback; the handler guards on isLoadingMore + remainingCount so it never double-fires. - Sidebar tab tooltips appeared the instant the cursor crossed an icon, flashing during a quick pass to another tab. Added a 500ms hover-in delay (hide stays immediate) so they only show on deliberate hover. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Two micro-interaction fixes.
Infinite scroll
History now auto-loads the next page when you scroll within ~240px of the bottom, so a long history feels endless rather than halting at a button. The Load more button stays as a visible affordance and fallback; the scroll handler guards on
isLoadingMore+remainingCountso it can't double-fire.Tooltip delay
Sidebar tab tooltips popped the instant the cursor crossed an icon — flashing during a quick pass toward another tab. Added a 500ms hover-in delay (hide stays immediate) so they only appear on deliberate hover.
tscclean · 563 tests green.🤖 Generated with Claude Code