From 9b92f30483c0afc21ad98582fcfb4425b2abfee1 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 20 May 2024 15:21:47 -0500 Subject: [PATCH] Load the instance before verify_credentials --- src/init/soapbox-load.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/init/soapbox-load.tsx b/src/init/soapbox-load.tsx index cc9b883f1..8636c1497 100644 --- a/src/init/soapbox-load.tsx +++ b/src/init/soapbox-load.tsx @@ -17,11 +17,8 @@ import MESSAGES from 'soapbox/messages'; const loadInitial = () => { // @ts-ignore return async(dispatch, getState) => { - // Await for authenticated fetch - await dispatch(fetchMe()); - // Await for feature detection await dispatch(fetchInstance()); - // Await for configuration + await dispatch(fetchMe()); await dispatch(loadSoapboxConfig()); }; };