From 13c9c7a62bf1ba5df4b9558cf8f119a84c20aaf6 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 30 Sep 2025 21:28:12 +0000 Subject: [PATCH] Remove throw from handleRealmSave cgen-5fc2d90d7bf946d09469b78e03698cfc --- client/pages/Dashboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index 5f55ddda..542e4cb5 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -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); }