Handle error using snackbar
This commit is contained in:
parent
f7c88e883f
commit
920190d367
@ -58,20 +58,20 @@ const SignWithCosmos = () => {
|
||||
if (response.ok) {
|
||||
enqueueSnackbar('Tokens sent successfully', { variant: "success" });
|
||||
} else {
|
||||
if (response.status === 429) {
|
||||
const errorResponse = await response.json();
|
||||
if (response.status === 429) {
|
||||
enqueueSnackbar(`${response.statusText} : ${errorResponse.error}`, { variant: "error" });
|
||||
setIsRequesting(false);
|
||||
} else {
|
||||
throw new Error('Failed to send request');
|
||||
throw new Error(errorResponse.error);
|
||||
}
|
||||
}
|
||||
|
||||
getBalances();
|
||||
setIsRequesting(false);
|
||||
} catch (error) {
|
||||
console.error('Error:', error);
|
||||
throw error;
|
||||
console.error(error);
|
||||
enqueueSnackbar("Error getting tokens from faucet", { variant: "error" });
|
||||
} finally {
|
||||
setIsRequesting(false);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user