environments/review-react-quer-1t63ue/deployments/714
Justin 2022-08-02 09:28:48 -04:00
rodzic 7836698dc2
commit 7ac18c0951
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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 <Status /> 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;

Wyświetl plik

@ -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;
};