mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 00:56:23 +01:00
Handle errors here
This commit is contained in:
parent
d981a31a10
commit
eb3880b435
1 changed files with 13 additions and 7 deletions
|
@ -58,13 +58,19 @@ function Compose({
|
|||
).info;
|
||||
|
||||
const configuration = useMemo(() => {
|
||||
const instances = store.local.getJSON('instances');
|
||||
const currentInstance = accounts.find(
|
||||
(a) => a.info.id === currentAccount,
|
||||
).instanceURL;
|
||||
const config = instances[currentInstance].configuration;
|
||||
console.log(config);
|
||||
return config;
|
||||
try {
|
||||
const instances = store.local.getJSON('instances');
|
||||
const currentInstance = accounts.find(
|
||||
(a) => a.info.id === currentAccount,
|
||||
).instanceURL;
|
||||
const config = instances[currentInstance].configuration;
|
||||
console.log(config);
|
||||
return config;
|
||||
} catch (e) {
|
||||
alert('Failed to load instance configuration. Please try again.');
|
||||
console.error(e);
|
||||
return {};
|
||||
}
|
||||
}, []);
|
||||
|
||||
const {
|
||||
|
|
Loading…
Reference in a new issue