Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the WalkthroughThis change implements the "My Feeds" feature within the user profile section. It introduces new routes, components, and hooks to fetch, filter, search, and display the user's created feeds. The UI is updated to include a "My Feeds" tab, feed cards with relevant data, filters, search functionality, and navigation to feed creation. The route structure is refactored to support profile tabs. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant MyFeedsPage
participant API
participant FeedCard
participant Router
User->>Router: Navigates to /profile/my-feeds
Router->>MyFeedsPage: Render MyFeeds component
MyFeedsPage->>API: Fetch feeds created by user
API-->>MyFeedsPage: Returns user feeds
MyFeedsPage->>MyFeedsPage: Apply search/filter
loop For each filtered feed
MyFeedsPage->>FeedCard: Render FeedCard with feed data
FeedCard->>API: Fetch feed stats (content count, curators)
API-->>FeedCard: Returns stats
end
User->>MyFeedsPage: Clicks "Create New Feed"
MyFeedsPage->>Router: Navigate to /create/feed
Assessment against linked issues
Assessment against linked issues: Out-of-scope changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
There was a problem hiding this comment.
Actionable comments posted: 2
♻️ Duplicate comments (1)
apps/app/src/components/profile/my-feeds/FeedCard.tsx (1)
12-18: Same duplication issue as in useFilteredFeeds hook.This
isCompletelogic is duplicated from theuseFilteredFeedshook. Please refer to the refactoring suggestion in that file to extract this logic into a shared utility function.
🧹 Nitpick comments (5)
apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts (1)
10-14: Simplify with optional chaining.The conditional check can be simplified using optional chaining as suggested by the static analysis tool.
- const matchesSearch = - !searchTerm || - feed.name.toLowerCase().includes(searchTerm.toLowerCase()) || - (feed.description && - feed.description.toLowerCase().includes(searchTerm.toLowerCase())); + const matchesSearch = + !searchTerm || + feed.name.toLowerCase().includes(searchTerm.toLowerCase()) || + feed.description?.toLowerCase().includes(searchTerm.toLowerCase());apps/app/src/components/profile/my-feeds/FeedCard.tsx (1)
20-20: TODO: Consider implementing tags system.The tags feature is marked as TODO. This could enhance the feed categorization and discovery experience.
Would you like me to help design a tags system implementation or create an issue to track this feature?
apps/app/src/lib/api/feeds.ts (1)
187-197: Complete the implementation of curator countThe
curatorCountis hardcoded to 0 with a TODO comment indicating missing functionality.Would you like me to help implement the curator count functionality or create an issue to track this incomplete feature? This could involve:
- Creating a new API endpoint
/api/feeds/:feedId/statsthat returns both content and curator counts- Updating this hook to fetch from the new endpoint
apps/app/src/components/profile/my-feeds/index.tsx (2)
35-41: Enhance error handling with retry functionalityThe current error handling only displays a generic message. Consider adding more context and a retry option.
if (error) { return ( <div className="flex items-center justify-center p-8"> - <p className="text-red-500">Failed to load feeds. Please try again.</p> + <div className="text-center"> + <p className="text-red-500 mb-2">Failed to load feeds</p> + <p className="text-sm text-gray-600 mb-4">{error.message || "Please check your connection and try again."}</p> + <Button variant="outline" onClick={() => window.location.reload()}> + Retry + </Button> + </div> </div> ); }
48-96: Consider simplifying the filter dropdown implementationThe Command component with search functionality seems excessive for a simple filter with only a few options. A standard Select component would be more appropriate and performant.
Consider using a simpler dropdown implementation:
-<Popover open={open} onOpenChange={setOpen}> - <PopoverTrigger asChild> - <Button - variant="outline" - role="combobox" - aria-expanded={open} - className="truncate justify-between h-auto" - > - {filterValue - ? `${filterOptions.find((option) => option.value === filterValue)?.label} Feeds` - : "Select filter..."} - <ChevronsUpDown className="ml-2 h-4 w-4 shrink-0 opacity-50" /> - </Button> - </PopoverTrigger> - <PopoverContent className="p-0"> - <Command> - <CommandInput placeholder="Search feeds" /> - <CommandList> - <CommandEmpty>No filter found.</CommandEmpty> - <CommandGroup> - {filterOptions.map((option) => ( - <CommandItem - key={option.value} - value={option.value} - onSelect={(currentValue) => { - setFilterValue( - currentValue === filterValue - ? "all" - : (currentValue as FilterValue), - ); - setOpen(false); - }} - > - <Check - className={cn( - "mr-2 h-4 w-4", - filterValue === option.value - ? "opacity-100" - : "opacity-0", - )} - /> - {option.label} - </CommandItem> - ))} - </CommandGroup> - </CommandList> - </Command> - </PopoverContent> -</Popover> +<Select value={filterValue} onValueChange={setFilterValue}> + <SelectTrigger className="w-[180px]"> + <SelectValue placeholder="Select filter..." /> + </SelectTrigger> + <SelectContent> + {filterOptions.map((option) => ( + <SelectItem key={option.value} value={option.value}> + {option.label} Feeds + </SelectItem> + ))} + </SelectContent> +</Select>
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (19)
.prettierignore(1 hunks)apps/app/src/components/UserMenu.tsx(1 hunks)apps/app/src/components/profile/ProfileTabs.tsx(2 hunks)apps/app/src/components/profile/my-feeds/FeedCard.tsx(1 hunks)apps/app/src/components/profile/my-feeds/SearchForm.tsx(1 hunks)apps/app/src/components/profile/my-feeds/card.tsx(3 hunks)apps/app/src/components/profile/my-feeds/constants.ts(1 hunks)apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts(1 hunks)apps/app/src/components/profile/my-feeds/index.tsx(2 hunks)apps/app/src/components/profile/overview/index.tsx(1 hunks)apps/app/src/lib/api/feeds.ts(2 hunks)apps/app/src/routeTree.gen.ts(3 hunks)apps/app/src/routes/_layout.tsx(1 hunks)apps/app/src/routes/_layout/profile/_tabs/activity.tsx(1 hunks)apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx(1 hunks)apps/app/src/routes/_layout/profile/_tabs/overview.tsx(1 hunks)apps/app/src/routes/_layout/profile/_tabs/route.tsx(1 hunks)apps/app/src/routes/_layout/profile/index.tsx(1 hunks)pnpm-workspace.yaml(1 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (5)
apps/app/src/routes/_layout/profile/_tabs/activity.tsx (5)
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)
Route(4-6)apps/app/src/routes/_layout/profile/_tabs/overview.tsx (1)
Route(4-6)apps/app/src/routes/_layout/profile/index.tsx (1)
Route(3-7)apps/app/src/routes/_layout/profile/_tabs/route.tsx (1)
Route(18-20)apps/app/src/components/profile/activity/index.tsx (1)
ProfileActivity(76-103)
apps/app/src/components/profile/ProfileTabs.tsx (1)
apps/app/src/components/profile/my-feeds/index.tsx (1)
MyFeeds(21-133)
apps/app/src/routes/_layout/profile/_tabs/overview.tsx (5)
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)
Route(4-6)apps/app/src/routes/_layout/profile/_tabs/activity.tsx (1)
Route(4-6)apps/app/src/routes/_layout/profile/index.tsx (1)
Route(3-7)apps/app/src/routes/_layout/profile/_tabs/route.tsx (1)
Route(18-20)apps/app/src/components/profile/overview/index.tsx (1)
ProfileOverview(7-21)
apps/app/src/routes/_layout/profile/index.tsx (4)
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)
Route(4-6)apps/app/src/routes/_layout/profile/_tabs/activity.tsx (1)
Route(4-6)apps/app/src/routes/_layout/profile/_tabs/overview.tsx (1)
Route(4-6)apps/app/src/routes/_layout/profile/_tabs/route.tsx (1)
Route(18-20)
apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts (3)
packages/shared-db/src/schema/feeds.ts (1)
feeds(28-46)packages/types/src/api/feeds.ts (1)
FeedResponse(41-41)apps/app/src/components/profile/my-feeds/constants.ts (1)
FilterValue(16-16)
🪛 Biome (1.9.4)
apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts
[error] 13-14: Change to an optional chain.
Unsafe fix: Change to an optional chain.
(lint/complexity/useOptionalChain)
[error] 18-19: Change to an optional chain.
Unsafe fix: Change to an optional chain.
(lint/complexity/useOptionalChain)
apps/app/src/components/profile/my-feeds/FeedCard.tsx
[error] 13-14: Change to an optional chain.
Unsafe fix: Change to an optional chain.
(lint/complexity/useOptionalChain)
🔇 Additional comments (23)
pnpm-workspace.yaml (1)
7-7: LGTM - Dependency configuration update.The addition of
msgpackr-extracttoonlyBuiltDependenciesis correctly formatted and follows the existing pattern. This configuration ensures the package is built from source when needed..prettierignore (1)
7-8: LGTM - Appropriate exclusions for generated files.Adding
packages/shared-db/migrationsandapps/app/src/routeTree.gen.tsto the ignore list is correct, as these appear to be generated files that should not be auto-formatted by Prettier.apps/app/src/components/UserMenu.tsx (1)
79-79: Verify that making username always visible is intentional.The removal of
hidden sm:blockclasses will make the username visible on all screen sizes. Please confirm this change is intentional and doesn't negatively impact the mobile user experience or layout.apps/app/src/components/profile/overview/index.tsx (1)
2-5: Clarify if commented components should be removed permanently.The imports and components (
CurateCTA,TopBadges,UserStats) are commented out rather than removed. If these components are permanently disabled, consider removing them entirely. If this is temporary, consider adding a TODO comment explaining when they'll be re-enabled.apps/app/src/components/profile/ProfileTabs.tsx (3)
6-6: LGTM - Icon import re-enabled correctly.The
Newspapericon import is properly uncommented to support the My Feeds tab.
11-11: LGTM - Component import re-enabled correctly.The
MyFeedscomponent import is properly uncommented and aligns with the tab configuration.
29-34: LGTM - My Feeds tab configuration is well-structured.The tab configuration follows the established pattern with proper value, label, icon, and component mapping. The implementation integrates seamlessly with the existing tabs structure.
apps/app/src/routes/_layout/profile/_tabs/activity.tsx (1)
1-10: LGTM! Consistent route implementation.The route follows the established pattern for profile tab routes and properly integrates with the nested routing structure. The implementation is clean and consistent with the sibling routes.
apps/app/src/routes/_layout/profile/_tabs/overview.tsx (1)
1-10: LGTM! Maintains consistency with sibling routes.The implementation follows the same clean pattern as the other profile tab routes, ensuring maintainability and consistency across the profile section navigation.
apps/app/src/routes/_layout/profile/_tabs/my-feeds.tsx (1)
1-10: LGTM! Core route for the new My Feeds feature.The route implementation is consistent with the other profile tab routes and properly establishes the navigation path for the new My Feeds functionality.
apps/app/src/routes/_layout.tsx (1)
10-14: LGTM! Layout simplification improves maintainability.The simplified layout structure removes unnecessary nesting and uses semantic HTML with the
<main>element. This change should improve both maintainability and accessibility while providing better support for the nested profile routing structure.apps/app/src/components/profile/my-feeds/constants.ts (1)
1-16: LGTM! Well-structured constants with proper TypeScript patterns.The implementation follows TypeScript best practices with the
as constassertion for better type inference and uses mapped types for theFilterValuetype. The filter options are logical and well-organized for the feeds filtering functionality.apps/app/src/routes/_layout/profile/index.tsx (1)
1-7: LGTM! Clean redirect implementation.The redirect logic correctly uses the
beforeLoadhook to redirect users from the base profile route to the overview tab, following TanStack Router best practices.apps/app/src/components/profile/my-feeds/SearchForm.tsx (1)
1-24: LGTM! Clean and well-structured search component.The implementation follows React best practices with proper TypeScript typing, controlled component pattern, and responsive design. The icon positioning and styling are well executed.
apps/app/src/components/profile/my-feeds/FeedCard.tsx (1)
21-21: Good use of optional chaining and fallback.The image source handling properly uses optional chaining and provides a sensible fallback.
apps/app/src/routes/_layout/profile/_tabs/route.tsx (4)
22-41: Well-structured navigation configuration.The
navigationItemsarray provides a clean, maintainable way to configure tabs with consistent structure for value, path, label, and icon.
48-59: Robust tab navigation logic.The
getCurrentTabandhandleTabChangefunctions properly handle route matching and navigation. UsingstartsWithfor path matching is appropriate for nested routes.
61-70: Proper authentication handling with clear UX.The authentication guard provides a clear login prompt with proper messaging and call-to-action button.
72-103: Excellent responsive layout and component integration.The main layout properly integrates the
ProfileHeader, tab navigation, and content rendering throughOutlet. The responsive styling and component composition are well executed.apps/app/src/components/profile/my-feeds/card.tsx (2)
30-30: Good implementation of feed navigationThe Link component properly navigates to individual feed pages with type-safe routing parameters.
46-53: ```shell
#!/bin/bashSearch entire repository for the default feed image
fd -t f default-feed.png || find . -type f -name default-feed.png || echo "default-feed.png not found anywhere"
</details> <details> <summary>apps/app/src/components/profile/my-feeds/index.tsx (1)</summary> `106-130`: **Well-structured loading and empty states** The implementation handles loading, empty, and filtered states appropriately with clear user feedback. </details> <details> <summary>apps/app/src/routeTree.gen.ts (1)</summary> `1-10`: **Auto-generated file - changes look correct** This file is automatically generated by TanStack Router and the new profile tabs routing structure appears to be properly configured. </details> </blockquote></details> </details> <!-- This is an auto-generated comment by CodeRabbit for review status -->
| const isComplete = !!( | ||
| feed.config && | ||
| feed.config.name && | ||
| feed.config.description && | ||
| feed.config.sources && | ||
| feed.config.sources.length > 0 | ||
| ); |
There was a problem hiding this comment.
🛠️ Refactor suggestion
Extract feed completion logic to avoid duplication.
The isComplete logic is duplicated in FeedCard.tsx. Consider extracting this to a shared utility function to maintain consistency and reduce code duplication.
+// Create a new utility file: apps/app/src/components/profile/my-feeds/utils/feedUtils.ts
+export function isFeedComplete(feed: FeedResponse): boolean {
+ return !!(
+ feed.config?.name &&
+ feed.config?.description &&
+ feed.config?.sources?.length > 0
+ );
+}Then use it in both files:
- const isComplete = !!(
- feed.config &&
- feed.config.name &&
- feed.config.description &&
- feed.config.sources &&
- feed.config.sources.length > 0
- );
+ const isComplete = isFeedComplete(feed);Committable suggestion skipped: line range outside the PR's diff.
🧰 Tools
🪛 Biome (1.9.4)
[error] 18-19: Change to an optional chain.
Unsafe fix: Change to an optional chain.
(lint/complexity/useOptionalChain)
🤖 Prompt for AI Agents
In apps/app/src/components/profile/my-feeds/hooks/useFilteredFeeds.ts around
lines 17 to 23, the isComplete logic is duplicated in FeedCard.tsx. Extract this
logic into a shared utility function that checks if feed.config and its required
properties exist and sources array is non-empty. Replace the existing isComplete
checks in both files with calls to this new utility function to ensure
consistency and reduce duplication.
* add feed conflicts and lowercase id * Adds "my feeds" on profile (#204) * feat: update my feeds tab on profile page * feat: update tabs to be routes * fix: double scrollbar * comment unused files in overview tab * fix: revert rsbuild * fmt * fix: add routegen to prettier ignore * clean up, server side --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * Resolve shot's comments (#205) * feat: add name and tag validation to create * feat: add no activity data in activity tab * add coming soon sections for profile page * feat: clicking on leaderboard feed hashtag will redirect to that feed * fix: keeps name on start when disable feed names collapse * fix: rsbuild * fix: add routegen to prettier ignore * fix: add ability to navigate to collapsed feeds in leaderboard * add ability to expand or collapse all * fix: rsbuild * adjustments * nitpicks --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * feat: new feed edit (#198) * feat: update the feed editor * feat: improve performance, and fix bugs * feat: revert local development change * add routegen to pretttier ignore * fix: resolve code rabbit comments * fix some nitpick comments * fix prettier and build config * formats * merge --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * debounce * nitpicks * adds processing step plan * fix auth * Feat: recent content (#208) * Feat: add recent feeds * feat: add recent content to the main feed page * fmt * Update apps/app/src/hooks/use-rss-feed.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * nitpicks --------- Co-authored-by: Elliot Braem <elliot@everything.dev> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * atuh flow * delete old requests --------- Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* add feed conflicts and lowercase id * Adds "my feeds" on profile (#204) * feat: update my feeds tab on profile page * feat: update tabs to be routes * fix: double scrollbar * comment unused files in overview tab * fix: revert rsbuild * fmt * fix: add routegen to prettier ignore * clean up, server side --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * Resolve shot's comments (#205) * feat: add name and tag validation to create * feat: add no activity data in activity tab * add coming soon sections for profile page * feat: clicking on leaderboard feed hashtag will redirect to that feed * fix: keeps name on start when disable feed names collapse * fix: rsbuild * fix: add routegen to prettier ignore * fix: add ability to navigate to collapsed feeds in leaderboard * add ability to expand or collapse all * fix: rsbuild * adjustments * nitpicks --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * feat: new feed edit (#198) * feat: update the feed editor * feat: improve performance, and fix bugs * feat: revert local development change * add routegen to pretttier ignore * fix: resolve code rabbit comments * fix some nitpick comments * fix prettier and build config * formats * merge --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * debounce * nitpicks * adds processing step plan * fix auth * Feat: recent content (#208) * Feat: add recent feeds * feat: add recent content to the main feed page * fmt * Update apps/app/src/hooks/use-rss-feed.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * nitpicks --------- Co-authored-by: Elliot Braem <elliot@everything.dev> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * atuh flow * delete old requests * feat: Distributor badges link to relevant source (#210) * add _tabs * init with a rss feed * xml * fmt --------- Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* add feed conflicts and lowercase id * Adds "my feeds" on profile (#204) * feat: update my feeds tab on profile page * feat: update tabs to be routes * fix: double scrollbar * comment unused files in overview tab * fix: revert rsbuild * fmt * fix: add routegen to prettier ignore * clean up, server side --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * Resolve shot's comments (#205) * feat: add name and tag validation to create * feat: add no activity data in activity tab * add coming soon sections for profile page * feat: clicking on leaderboard feed hashtag will redirect to that feed * fix: keeps name on start when disable feed names collapse * fix: rsbuild * fix: add routegen to prettier ignore * fix: add ability to navigate to collapsed feeds in leaderboard * add ability to expand or collapse all * fix: rsbuild * adjustments * nitpicks --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * feat: new feed edit (#198) * feat: update the feed editor * feat: improve performance, and fix bugs * feat: revert local development change * add routegen to pretttier ignore * fix: resolve code rabbit comments * fix some nitpick comments * fix prettier and build config * formats * merge --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * debounce * nitpicks * adds processing step plan * fix auth * Feat: recent content (#208) * Feat: add recent feeds * feat: add recent content to the main feed page * fmt * Update apps/app/src/hooks/use-rss-feed.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * nitpicks --------- Co-authored-by: Elliot Braem <elliot@everything.dev> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * atuh flow * delete old requests * feat: Distributor badges link to relevant source (#210) * add _tabs * init with a rss feed * xml * fmt * append --------- Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* add feed conflicts and lowercase id * Adds "my feeds" on profile (#204) * feat: update my feeds tab on profile page * feat: update tabs to be routes * fix: double scrollbar * comment unused files in overview tab * fix: revert rsbuild * fmt * fix: add routegen to prettier ignore * clean up, server side --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * Resolve shot's comments (#205) * feat: add name and tag validation to create * feat: add no activity data in activity tab * add coming soon sections for profile page * feat: clicking on leaderboard feed hashtag will redirect to that feed * fix: keeps name on start when disable feed names collapse * fix: rsbuild * fix: add routegen to prettier ignore * fix: add ability to navigate to collapsed feeds in leaderboard * add ability to expand or collapse all * fix: rsbuild * adjustments * nitpicks --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * feat: new feed edit (#198) * feat: update the feed editor * feat: improve performance, and fix bugs * feat: revert local development change * add routegen to pretttier ignore * fix: resolve code rabbit comments * fix some nitpick comments * fix prettier and build config * formats * merge --------- Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * debounce * nitpicks * adds processing step plan * fix auth * Feat: recent content (#208) * Feat: add recent feeds * feat: add recent content to the main feed page * fmt * Update apps/app/src/hooks/use-rss-feed.ts Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * nitpicks --------- Co-authored-by: Elliot Braem <elliot@everything.dev> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Elliot Braem <elliot@ejlbraem.com> * atuh flow * delete old requests * feat: Distributor badges link to relevant source (#210) * add _tabs * init with a rss feed * xml * fmt * append * add service url * adjustments * fix --------- Co-authored-by: Zeeshan Ahmad <itexpert120@outlook.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Fixes: #177
My_Feeds_Tab_Curate.mp4
Summary by CodeRabbit
New Features
Bug Fixes
Refactor
Chores