Remove throw from handleRealmSave
cgen-5fc2d90d7bf946d09469b78e03698cfc
This commit is contained in:
parent
3991133063
commit
13c9c7a62b
1 changed files with 1 additions and 1 deletions
|
|
@ -193,12 +193,12 @@ export default function Dashboard() {
|
|||
description: "Your AeThex experience has been refreshed.",
|
||||
});
|
||||
} catch (error: any) {
|
||||
console.error("Failed to save realm:", error);
|
||||
aethexToast.error({
|
||||
title: "Unable to save realm",
|
||||
description:
|
||||
error?.message || "Please try again or refresh the page.",
|
||||
});
|
||||
throw error;
|
||||
} finally {
|
||||
setSavingRealm(false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue