Export useFollowing hook

This commit is contained in:
Alex Gleason 2023-06-25 16:22:47 -05:00
parent 9c9c790a5f
commit 45493880cd
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 3 additions and 4 deletions

View file

@ -3,6 +3,7 @@
export { useAccount } from './accounts/useAccount';
export { useAccountLookup } from './accounts/useAccountLookup';
export { useFollow } from './accounts/useFollow';
export { useFollowing } from './accounts/useFollowing';
export { useRelationships } from './accounts/useRelationships';
export { usePatronUser } from './accounts/usePatronUser';

View file

@ -1,8 +1,7 @@
import React from 'react';
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
import { useAccountLookup } from 'soapbox/api/hooks';
import { useFollowing } from 'soapbox/api/hooks/accounts/useFollowing';
import { useAccountLookup, useFollowing } from 'soapbox/api/hooks';
import Account from 'soapbox/components/account';
import MissingIndicator from 'soapbox/components/missing-indicator';
import ScrollableList from 'soapbox/components/scrollable-list';

View file

@ -1,8 +1,7 @@
import React from 'react';
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
import { useAccountLookup } from 'soapbox/api/hooks';
import { useFollowing } from 'soapbox/api/hooks/accounts/useFollowing';
import { useAccountLookup, useFollowing } from 'soapbox/api/hooks';
import Account from 'soapbox/components/account';
import MissingIndicator from 'soapbox/components/missing-indicator';
import ScrollableList from 'soapbox/components/scrollable-list';