You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/store
Steven e0b1153269 fix(web): resolve MobX observable reactivity issue in filter computation
Fixes filtering functionality that was broken due to improper use of
useMemo with MobX observables. The issue occurred because useMemo's
dependency array uses reference equality, but MobX observable arrays
are mutated in place (reference doesn't change when items are added/removed).

Changes:
- Remove useMemo from filter computation in Home, UserProfile, and Archived pages
- Calculate filters directly in render since components are already MobX observers
- Fix typo: memoFitler -> memoFilter in Archived.tsx

This ensures filters are recalculated whenever memoFilterStore.filters changes,
making tag clicks and other filter interactions work correctly.

Fixes #5189

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
1 week ago
..
cache chore: fix linter 2 months ago
db fix(web): resolve MobX observable reactivity issue in filter computation 1 week ago
migration chore: update migrator comments 4 months ago
seed/sqlite feat: add id as final tie-breaker in ListMemos 2 weeks ago
test refactor: remove unused constants 3 weeks ago
activity.go chore: remove version update activity 9 months ago
attachment.go refactor: memo filter 3 weeks ago
cache.go chore: update store cache 2 years ago
common.go chore: update workspace setting store 2 years ago
driver.go refactor: update migration history methods 2 weeks ago
idp.go refactor: store cache 5 months ago
inbox.go chore: add pagination to list inboxes 1 year ago
memo.go feat: enhance memo sorting functionality to support multiple fields 2 weeks ago
memo_relation.go fix: list memo relations 7 months ago
migration_history.go refactor: update migration history methods 2 weeks ago
migrator.go feat: enhance memo sorting functionality to support multiple fields 2 weeks ago
reaction.go refactor: memo filter 3 weeks ago
store.go refactor: clean packages 5 months ago
user.go refactor: remove unused constants 3 weeks ago
user_setting.go refactor: webhook service 4 months ago
workspace_setting.go refactor: store cache 5 months ago