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:
parent
bf2e3444b9
commit
1c50ca17b7
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue