From 90a33e1474def48df8ed8c6d4068508d254f4ece Mon Sep 17 00:00:00 2001 From: adityaoberai Date: Tue, 27 Jan 2026 22:16:26 +0530 Subject: [PATCH] adjust profile check at the bottom --- src/routes/(console)/bottomAlerts.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/(console)/bottomAlerts.ts b/src/routes/(console)/bottomAlerts.ts index 4b749a14f..5be4d622f 100644 --- a/src/routes/(console)/bottomAlerts.ts +++ b/src/routes/(console)/bottomAlerts.ts @@ -14,7 +14,7 @@ const listOfPromotions: BottomModalAlertItem[] = []; if (isCloud && SHOW_IMAGINE_PROMO) { const imaginePromo: BottomModalAlertItem = { - id: 'modal:imagine-ph-launch-studio', + id: 'modal:imagine-ph-launch-studio-123', backgroundComponent: Imagine, title: 'Imagine is live on Product Hunt', message: 'Ask questions, share feedback, and support the launch', @@ -48,7 +48,7 @@ if (isCloud && SHOW_IMAGINE_PROMO) { export function addBottomModalAlerts() { // fast path: not the valid profile to show this! - if (resolvedProfile.id !== ProfileMode.CONSOLE) return; + if (resolvedProfile.id !== ProfileMode.STUDIO) return; listOfPromotions.forEach((promotion) => showBottomModalAlert(promotion));