From 99983666a2698d2c4289a2f62d2e215a5c090b8c Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 10 Nov 2025 23:55:17 +0000 Subject: [PATCH] completionId: cgen-a3b3db1a0f8c458ab88b0805f5011266 cgen-a3b3db1a0f8c458ab88b0805f5011266 --- client/lib/aethex-database-adapter.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/client/lib/aethex-database-adapter.ts b/client/lib/aethex-database-adapter.ts index 35fa7615..9c623bd9 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -680,6 +680,19 @@ export const aethexProjectService = { throw error; } + if (data && project.user_id) { + try { + await aethexNotificationService.createNotification( + project.user_id, + "success", + `🚀 Project Created: ${project.name || "Untitled"}`, + "Your new project is ready to go!", + ); + } catch (notifError) { + console.warn("Failed to create project notification:", notifError); + } + } + return data as AethexProject; },