Handle errors here

This commit is contained in:
Lim Chee Aun 2022-12-27 01:07:33 +08:00
parent d981a31a10
commit eb3880b435

View file

@ -58,6 +58,7 @@ function Compose({
).info; ).info;
const configuration = useMemo(() => { const configuration = useMemo(() => {
try {
const instances = store.local.getJSON('instances'); const instances = store.local.getJSON('instances');
const currentInstance = accounts.find( const currentInstance = accounts.find(
(a) => a.info.id === currentAccount, (a) => a.info.id === currentAccount,
@ -65,6 +66,11 @@ function Compose({
const config = instances[currentInstance].configuration; const config = instances[currentInstance].configuration;
console.log(config); console.log(config);
return config; return config;
} catch (e) {
alert('Failed to load instance configuration. Please try again.');
console.error(e);
return {};
}
}, []); }, []);
const { const {