Remove throw from handleRealmSave

cgen-5fc2d90d7bf946d09469b78e03698cfc
This commit is contained in:
Builder.io 2025-09-30 21:28:12 +00:00
parent 3991133063
commit 13c9c7a62b

View file

@ -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);
}