diff --git a/app/soapbox/features/ui/index.tsx b/app/soapbox/features/ui/index.tsx index 58cf10efc..67f5d7500 100644 --- a/app/soapbox/features/ui/index.tsx +++ b/app/soapbox/features/ui/index.tsx @@ -36,6 +36,7 @@ import HomePage from 'soapbox/pages/home_page'; import ProfilePage from 'soapbox/pages/profile_page'; import RemoteInstancePage from 'soapbox/pages/remote_instance_page'; import StatusPage from 'soapbox/pages/status_page'; +import { queryClient } from 'soapbox/queries/client'; import { getAccessToken, getVapidKey } from 'soapbox/utils/auth'; import { isStandalone } from 'soapbox/utils/state'; // import GroupSidebarPanel from '../groups/sidebar_panel'; @@ -120,7 +121,6 @@ import { WrappedRoute } from './util/react_router_helpers'; // Dummy import, to make sure that ends up in the application bundle. // Without this it ends up in ~8 very commonly used bundles. import 'soapbox/components/status'; -import { queryClient } from 'soapbox/queries/client'; const EmptyPage = HomePage; diff --git a/app/soapbox/queries/carousels.ts b/app/soapbox/queries/carousels.ts index bf56ad0a7..36652e3cb 100644 --- a/app/soapbox/queries/carousels.ts +++ b/app/soapbox/queries/carousels.ts @@ -8,7 +8,7 @@ type Avatar = { username: string } -const getCarouselAvatars = async () => { +const getCarouselAvatars = async() => { const { data } = await API.get('/api/v1/truth/carousels/avatars'); return data; };