fix: standardize FeedIcon import across user and list pages

- Updated import statements for FeedIcon in both the user and list pages to maintain consistency.
- Removed redundant import paths to streamline the code.

Signed-off-by: Innei <tukon479@gmail.com>
This commit is contained in:
Innei 2025-04-28 21:53:54 +08:00
parent bf2e3444b9
commit 1c50ca17b7
No known key found for this signature in database
GPG Key ID: 0F62D33977F021F7
2 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
import { Item } from "@client/components/items"
import { MainContainer } from "@client/components/layout/main"
import { FeedCertification } from "@client/components/ui/feed-certification"
import { FeedIcon } from "@client/components/ui/feed-icon"
import { askOpenInFollowApp } from "@client/lib/helper"
import type { Feed } from "@client/query/feed"
import { useList } from "@client/query/list"
import { FollowIcon } from "@follow/components/icons/follow.jsx"
import { Avatar, AvatarFallback, AvatarImage } from "@follow/components/ui/avatar/index.jsx"
import { Button } from "@follow/components/ui/button/index.jsx"
import { FeedIcon } from "@follow/components/ui/feed-icon/index.jsx"
import { LoadingCircle } from "@follow/components/ui/loading/index.jsx"
import { useTitle } from "@follow/hooks"
import { cn } from "@follow/utils/utils"

View File

@ -1,12 +1,12 @@
import { useWhoami } from "@client/atoms/user"
import { MainContainer } from "@client/components/layout/main"
import { FeedIcon } from "@client/components/ui/feed-icon"
import { askOpenInFollowApp } from "@client/lib/helper"
import { UrlBuilder } from "@client/lib/url-builder"
import { useUserQuery, useUserSubscriptionsQuery } from "@client/query/users"
import { FollowIcon } from "@follow/components/icons/follow.jsx"
import { Avatar, AvatarFallback, AvatarImage } from "@follow/components/ui/avatar/index.jsx"
import { Button } from "@follow/components/ui/button/index.jsx"
import { FeedIcon } from "@follow/components/ui/feed-icon/index.jsx"
import { LoadingCircle } from "@follow/components/ui/loading/index.jsx"
import { useTitle } from "@follow/hooks"
import { cn } from "@follow/utils/utils"