[#362] Member Search Mobile Forced Refresh#371
Merged
DVidal1205 merged 3 commits intomainfrom Feb 17, 2026
Merged
Conversation
Hopefully fixed the mobile force refresh issue when searching
|
No actionable comments were generated in the recent review. 🎉 📝 WalkthroughWalkthroughThis PR updates UI responsiveness in the pagination component and refactors the members table with improved state management, adjusted debounce timing (250ms → 500ms), and better loading/error state handling through triage rendering. Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested labels
Suggested reviewers
🚥 Pre-merge checks | ✅ 6 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (6 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
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.
Why
There was major mobile layout issues with the new members page since I added pagination, and a bug where a mobile user when searching for a member if they did not type fast enough before the debounce time it would force refresh the page for them making searching basically impossible. This aims to fix those issues!
What
Issue(s): #362
Added layout changes for smaller devices: Selectors, Search bar, Pagination
Instead of showing a single div for the whole page when the data was loading, only show a "loading ... " status in the table so that the search bar doesn't "poof" out of reality kicking mobile users off of the search bar.
Added a first render check to see if a person loads directly into a page that is not 1 ("for whatever reason") so that they aren't automatically kicked back into the first page causing an autorefresh.
Test Plan
Using chrome dev tools to test the mobile formatting, and praying that the mobile keyboard works now.
Images
Checklist
db:pushbefore mergingSummary by CodeRabbit
UI Improvements
Bug Fixes