diff options
Diffstat (limited to 'src/components/StarterPack')
-rw-r--r-- | src/components/StarterPack/Main/FeedsList.tsx | 6 | ||||
-rw-r--r-- | src/components/StarterPack/Main/PostsList.tsx | 8 | ||||
-rw-r--r-- | src/components/StarterPack/Main/ProfilesList.tsx | 14 | ||||
-rw-r--r-- | src/components/StarterPack/Wizard/ScreenTransition.tsx | 2 |
4 files changed, 15 insertions, 15 deletions
diff --git a/src/components/StarterPack/Main/FeedsList.tsx b/src/components/StarterPack/Main/FeedsList.tsx index 7d7cd2047..31d85ab42 100644 --- a/src/components/StarterPack/Main/FeedsList.tsx +++ b/src/components/StarterPack/Main/FeedsList.tsx @@ -3,9 +3,9 @@ import {ListRenderItemInfo, View} from 'react-native' import {AppBskyFeedDefs} from '@atproto/api' import {GeneratorView} from '@atproto/api/dist/client/types/app/bsky/feed/defs' -import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset' -import {isNative, isWeb} from 'platform/detection' -import {List, ListRef} from 'view/com/util/List' +import {useBottomBarOffset} from '#/lib/hooks/useBottomBarOffset' +import {isNative, isWeb} from '#/platform/detection' +import {List, ListRef} from '#/view/com/util/List' import {SectionRef} from '#/screens/Profile/Sections/types' import {atoms as a, useTheme} from '#/alf' import * as FeedCard from '#/components/FeedCard' diff --git a/src/components/StarterPack/Main/PostsList.tsx b/src/components/StarterPack/Main/PostsList.tsx index 0ff84ff45..a5275ae87 100644 --- a/src/components/StarterPack/Main/PostsList.tsx +++ b/src/components/StarterPack/Main/PostsList.tsx @@ -3,11 +3,11 @@ import {View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {isNative} from '#/platform/detection' import {FeedDescriptor} from '#/state/queries/post-feed' -import {isNative} from 'platform/detection' -import {Feed} from 'view/com/posts/Feed' -import {EmptyState} from 'view/com/util/EmptyState' -import {ListRef} from 'view/com/util/List' +import {Feed} from '#/view/com/posts/Feed' +import {EmptyState} from '#/view/com/util/EmptyState' +import {ListRef} from '#/view/com/util/List' import {SectionRef} from '#/screens/Profile/Sections/types' interface ProfilesListProps { diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx index a5c7cd1b7..ecd6225bb 100644 --- a/src/components/StarterPack/Main/ProfilesList.tsx +++ b/src/components/StarterPack/Main/ProfilesList.tsx @@ -8,13 +8,13 @@ import { } from '@atproto/api' import {InfiniteData, UseInfiniteQueryResult} from '@tanstack/react-query' -import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset' -import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender' -import {isBlockedOrBlocking} from 'lib/moderation/blocked-and-muted' -import {isNative, isWeb} from 'platform/detection' -import {useAllListMembersQuery} from 'state/queries/list-members' -import {useSession} from 'state/session' -import {List, ListRef} from 'view/com/util/List' +import {useBottomBarOffset} from '#/lib/hooks/useBottomBarOffset' +import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' +import {isBlockedOrBlocking} from '#/lib/moderation/blocked-and-muted' +import {isNative, isWeb} from '#/platform/detection' +import {useAllListMembersQuery} from '#/state/queries/list-members' +import {useSession} from '#/state/session' +import {List, ListRef} from '#/view/com/util/List' import {SectionRef} from '#/screens/Profile/Sections/types' import {atoms as a, useTheme} from '#/alf' import {ListFooter, ListMaybePlaceholder} from '#/components/Lists' diff --git a/src/components/StarterPack/Wizard/ScreenTransition.tsx b/src/components/StarterPack/Wizard/ScreenTransition.tsx index b7cd4e4c1..9b76d4c60 100644 --- a/src/components/StarterPack/Wizard/ScreenTransition.tsx +++ b/src/components/StarterPack/Wizard/ScreenTransition.tsx @@ -7,7 +7,7 @@ import Animated, { SlideInRight, } from 'react-native-reanimated' -import {isWeb} from 'platform/detection' +import {isWeb} from '#/platform/detection' export function ScreenTransition({ direction, |