feat: enhance UI components and add persistence for user settings#96
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: cdb41a5eac
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| return false | ||
| if (lastUpdated !== null) { | ||
| const secs = getSecondsSinceLastUpdate(lastUpdated) | ||
| if (secs < minTimeSinceLastUpdate * 60 || secs > maxTimeSinceLastUpdate * 60) return false |
There was a problem hiding this comment.
Allow sub-minute rows through the updated-time filter
This new lower-bound check now drops any listing updated in the last 60 seconds when the page is using its default range (the new Resale defaults set minTimeSinceLastUpdate to the first minute bucket, which is 1). Because the slider values start at 1 minute, users cannot set the lower bound to 0, so the freshest opportunities are permanently hidden even though they were previously visible under the max-only filter.
Useful? React with 👍 / 👎.
No description provided.