Commit 60d6b4b
fix: Correct import paths for feed components
Fixed broken import paths in user profile feed components:
- UserFeedDisplay.tsx: Changed @/lib/feed-events to @/lib/user/feed-events
- FeedCharts.tsx: Changed @/types/feed-events to @/lib/user/feed-events
Root cause: Feed event types were being imported from incorrect paths
Impact: Feed functionality was broken due to module resolution errors
Changes:
1. Updated SocialFeedEvent import in UserFeedDisplay.tsx:18
2. Updated FeedEvent (aliased from SocialFeedEvent) import in FeedCharts.tsx:4
The feed system includes:
- Real-time SSE updates for social feed events
- Unified feed combining social events and browsing history
- Event filtering by type, date range, and search
- Infinite scroll pagination
- Event grouping and stacking
- Like/unlike functionality with token gating
All feed functionality should now work correctly in user profiles.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent 09bfdb4 commit 60d6b4b
2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
0 commit comments