SoapboxMount: do load, even if something fails

This commit is contained in:
Alex Gleason
2022-04-26 15:07:13 -05:00
parent e0cc53038a
commit 7363d9c7f8

View File

@ -96,7 +96,7 @@ const SoapboxMount = () => {
dispatch(loadInitial()).then(() => {
setIsLoaded(true);
}).catch(() => {
setIsLoaded(false);
setIsLoaded(true);
});
}, []);