fix: reduce result animation delay - #2324
Merged
felladrin merged 2 commits intoAug 10, 2026
Merged
Conversation
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.
Description Closes #2185. Search and image results no longer make later items wait behind a long staggered fade-in. The transition now caps the stagger at five 40 ms steps and uses a 250 ms fade, so the result list finishes entering within roughly 450 ms instead of several seconds. Both result lists also respect
prefers-reduced-motionby disabling the transition delay and duration. ## How to test -node node_modules/vitest/vitest.mjs run— 40 files, 357 tests passed. -node node_modules/@biomejs/biome/bin/biome check client/components/Search/Results/Graphical/ImageResultsList.tsx client/components/Search/Results/Graphical/ImageResultsList.test.tsx client/components/Search/Results/Textual/SearchResultsList.tsx client/components/Search/Results/Textual/SearchResultsList.test.tsx client/components/Search/Results/testUtils.ts— passed. -node node_modules/typescript/bin/tsc --noEmit— passed. -node node_modules/vite/bin/vite.js build— passed. The repository's npm-based pre-commit and lint scripts could not run locally becausenpmis not available in the shell. The direct checks above were run with the bundled Node runtime. The full repository TypeScript check still reports existingdebugdeclaration errors in three server files, and the architectural linter still reports existing server-side external API findings; neither is in the changed files. ## Screenshots Not applicable; this change affects transition timing and reduced-motion behavior.AI assistance
AI assistance was used for repository research, implementation, and test drafting. The diff and validation results are documented here for maintainer review.